欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

android中創(chuàng)建通知欄Notification代碼實例

 更新時間:2015年05月20日 09:50:32   投稿:junjie  
這篇文章主要介紹了android中創(chuàng)建通知欄Notification代碼實例,本文直接給出實現(xiàn)代碼,需要的朋友可以參考下
///// 第一步:獲取NotificationManager
		NotificationManager nm = (NotificationManager) 
				getSystemService(Context.NOTIFICATION_SERVICE);

		///// 第二步:定義Notification
		Intent intent = new Intent(this, OtherActivity.class);
		//PendingIntent是待執(zhí)行的Intent
		PendingIntent pi = PendingIntent.getActivity(this, 0, intent,
				PendingIntent.FLAG_CANCEL_CURRENT);
		Notification notification = new Notification.Builder(this)
				.setContentTitle("title")
				.setContentText("text")
				.setSmallIcon(R.drawable.ic_launcher).setContentIntent(pi)
				.build();
		notification.flags = Notification.FLAG_NO_CLEAR;
		
		/////第三步:啟動通知欄,第一個參數(shù)是一個通知的唯一標識
		nm.notify(0, notification);
		
		//關閉通知
		//nm.cancel(0);

相關文章

最新評論