欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Notification通知栏

程序员文章站 2022-07-13 14:33:07
...
//通过获取系统服务得到通知管理者
				NotificationManager manager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
				//自己构建个通知
				Notification.Builder notification=new Notification.Builder(MainActivity.this);
				//设置Title
				notification.setContentTitle("老师牙疼!!!");
				//设置Text
				notification.setContentText("老师你变胖了");
				// 内容下面的一小段文字
				notification.setSubText("——记住我叫叶良辰"); 
				// 收上到信息后状态栏显示的文字信息
				notification.setTicker("收到叶良辰发送过来的信息~"); 
				// 设置通知时间
				notification.setWhen(System.currentTimeMillis()); 
				// 设置小图标
				notification.setSmallIcon(R.drawable.ic_launcher); 
				
				// 设置自定义的提示音(不考)
				notification.setSound(Uri.parse("android.resource://"
						+ getPackageName() + "/" + R.raw.niao)); 
				
				// 设置点击后取消Notification(加了这行代码  点击通知后  通知就会消失)
				notification.setAutoCancel(true);
				Intent intent=new Intent(MainActivity.this,TwoActivity.class);
				
				// 此处设置点击的activity的跳转
				// 第一个参数依旧是Context
				// 第二个参数一般用不到,所以用0表示取默认值
				// 第三个参数就是一个Intent对象
				// 第四个参数直接写0
				PendingIntent pit = PendingIntent.getActivity(
						MainActivity.this, 0, intent, 0);
				// 设置PendingIntent(设置意图)
				notification.setContentIntent(pit); 
				
				Notification notify1 = notification.build();
				//使用notify将通知显示出来 
				//第一个参数是id,要为每个通知所指定的id是不同的 (就是判断这是那个一个通知)
				//第二个参数就是Notification对象 
				manager.notify(1, notify1);
 NotificationManager manager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE); 
		  manager.cancel(1); 

 

相关标签: Notification