Android中關於Notification及NotificationManger的詳解

來源:互聯網
上載者:User

Android狀態列提醒

在Android中提醒功能也可以用AlertDialog,但是我們要謹慎的使用,因為當使用AlertDialog的時候,使用者進行中的操作將會被打斷,因為當前焦點被AlertDialog得到。我們可以想像一下,當使用者打遊戲正爽的時候,這時候來了一條簡訊。如果這時候簡訊用AlertDialog提醒,使用者必須先去處理這條提醒,從而才能繼續遊戲。使用者可能會活活被氣死。而使用Notification就不會帶來這些麻煩事,使用者完全可以打完遊戲再去看這條簡訊。所以在開發中應根據實際需求,選擇合適的控制項。

步驟:

一、添加布局對象

複製代碼 代碼如下:<Button
android:id="@+id/showButton"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="showNotification" />

<Button
android:id="@+id/cancelButton"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="cancelNotification" />

二、修改MianActivity繼承處Activity並實現介面OnClickListener
複製代碼 代碼如下:public class MainActivity extends Activity implements OnClickListener {
private Context mContext = this;
private Button showbtn, calclebtn;
private Notification noti;
private NotificationManager notiManger;
private static int NOTIFICATION_ID = 0x0001;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
setUpViews();
}

private void setUpViews() {
showbtn = (Button) findViewById(R.id.showButton);
calclebtn = (Button) findViewById(R.id.cancelButton);
noti = new Notification(R.drawable.ic_launcher, "this is a notification", System.currentTimeMillis());
noti.defaults = Notification.DEFAULT_SOUND;// 使用預設的提示聲音
noti.defaults |= Notification.DEFAULT_VIBRATE;// 添加震動
notiManger = (NotificationManager) this.getSystemService(mContext.NOTIFICATION_SERVICE);//擷取NofificationManger對象
showbtn.setOnClickListener(this);//讓Activity實現介面OnClickListener可以簡單的通過此兩行代碼添加按鈕點擊響應事件
calclebtn.setOnClickListener(this);
}

// 按鈕點擊事件響應
@Override
public void onClick(View v) {
if (v == showbtn) {
Intent intent = new Intent(this.getApplicationContext(),this.getClass());
// 設定Intent.FLAG_ACTIVITY_NEW_TASK
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
PendingIntent contentIntent = PendingIntent.getActivity(this, 0, intent, 0);
// noti.setLatestEventInfo(context, contentTitle, contentText, contentIntent)設定(上下文,標題,內容,PendingInteng)
noti.setLatestEventInfo(this, "10086", "你從此以後免除所有話費", contentIntent);
// 發送通知(訊息ID,通知對象)
notiManger.notify(NOTIFICATION_ID, noti);
} else if (v == calclebtn) {
// 取消通知(id)
notiManger.cancel(NOTIFICATION_ID);
}
}
}

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.