Android开发系列---UI篇---添加和消除通知栏图标


在android的app开发中,在退出程序时,会保留部分服务,因此在顶部的通知栏留下一个图标,用户通过点击图标可以快捷访问应用程序。例如360、腾讯qq等。

一、创建通知栏图标

NotificationManager mNM = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);

CharSequence text = getText(R.string.name);
//设置图标
Notification notification = new Notification(R.drawable.icon, text, System.currentTimeMillis());
//设置图标是否能被系统清理掉
notification.flags = notification.flags | Notification.FLAG_NO_CLEAR;
// 绑定intent,主要作用就是点击图标时能够进入程序
PendingIntent contentIntent = PendingIntent.getActivity(this, 0, new Intent(this, MyActivity.class), 0);


notification.setLatestEventInfo(this, getText(R.string.name), text, contentIntent);
//发送通知
mNM.notify(R.string.name, notification);

notification.flags有多种设置值,主要有Notification.FLAG_AUTO_CANCEL(可以被系统清理掉)、Notification.FLAG_ONGOING_EVENT(设置正在运行)等。

 

二、代码中清除通知栏图标

有时候,我们在代码里设置了Notification.FLAG_NO_CLEAR,这样的通知栏图标我们通过系统是无法clear掉的,这样就可能会让用户很烦躁,当然有些可以通过第三方软件强制清除。为了提供用户体验性,我们可以在退出时提示用户,是否要在后台继续运行程序或服务。下面看代码,仅仅是清除通知栏图标代码:

NotificationManager notificationManager = (NotificationManager) MainActivity.this
.getSystemService(NOTIFICATION_SERVICE);
notificationManager.cancel(R.string.name);//此处的R.string.name就是我们在发送通知时,设置的通知id

 

就这样。

因为经验尚浅,其实我写博文的主要目的是,为了让自己以后能够拿来主义。所以很多不足之处,敬请谅解。

转载于:https://www.cnblogs.com/huren/archive/2012/04/01/2428673.html

你可能感兴趣的:(移动开发,ui)