WEB开发网
开发学院手机开发Android 开发 AndRoid Notification的清空和修改 阅读

AndRoid Notification的清空和修改

 2010-07-21 01:22:00 来源:WEB开发网   
核心提示:比如一个电话来时,您想要清空通知栏的通知,AndRoid Notification的清空和修改,可用下面的方法Java代码public enum Notification { CALL };NotificationManager mgr = (NotificationManager) context.getSystem

比如一个电话来时,您想要清空通知栏的通知,可用下面的方法

Java代码

public enum Notification { CALL };

NotificationManager mgr = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);

mgr.cancel(Notification.CALL.hashCode());

public enum Notification { CALL };

NotificationManager mgr = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);

mgr.cancel(Notification.CALL.hashCode());

或者您不想清空,而是更改Notification的图标或文字描述,可用下面的方法

Java代码

mgr.notify(Notification.CALL.hashCode(),这里是Notification实例)

mgr.notify(Notification.CALL.hashCode(),这里是Notification实例)

应用举例,如删除短信通知,更改连接通知等

Tags:AndRoid Notification 清空

编辑录入:coldstar [复制链接] [打 印]
赞助商链接