android 创建通知栏Notification

Posted zhchoutai

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android 创建通知栏Notification相关的知识,希望对你有一定的参考价值。

		///// 第一步:获取NotificationManager
		NotificationManager nm = (NotificationManager) 
				getSystemService(Context.NOTIFICATION_SERVICE);

		///// 第二步:定义Notification
		Intent intent = new Intent(this, OtherActivity.class);
		//PendingIntent是待运行的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;
		
		/////第三步:启动通知栏,第一个參数是一个通知的唯一标识
		nm.notify(0, notification);
		
		//关闭通知
		//nm.cancel(0);


更复杂的功能能够查询相关api文档。


以上是关于android 创建通知栏Notification的主要内容,如果未能解决你的问题,请参考以下文章

Android通知——Notification

Android学习笔记(32):通知推送Notification

Android Notification 通知封装成工具类

Android Notification 通知封装成工具类

android 自定义带按钮的Notification及点击事件和伸缩通知栏

Android15.4 例15-2--Notification基本用法