当用户清除我的通知时,我想重置我的服务变量:这就是全部!
环顾四周我看到每个人都建议在我的通知上添加一个删除意图,但意图用于启动一个活动,一个服务o无论什么时候我只需要这样的东西:
void onClearPressed(){
aVariable = 0;
}
如何获得此结果?
答案 0 :(得分:40)
通知不是由您的应用管理的,所有显示通知和清除通知的内容实际上都发生在另一个进程中。由于安全原因,您不能让另一个应用程序直接执行一段代码。
在您的情况下,唯一的可能性是提供一个PendingIntent
,它只包含一个常规的Intent,并在通知被清除时代表您的应用启动。
您需要使用PendingIntent
来发送广播或启动服务,然后在广播接收器或服务中执行您想要的操作。究竟要使用什么取决于您显示通知的应用程序组件。
如果是广播接收器,您可以为广播接收器创建一个匿名内部类,并在显示通知之前动态注册它。它看起来像这样:
public class NotificationHelper {
private static final String NOTIFICATION_DELETED_ACTION = "NOTIFICATION_DELETED";
private final BroadcastReceiver receiver = new BroadcastReceiver() {
@Override
public void onReceive(Context context, Intent intent) {
aVariable = 0; // Do what you want here
unregisterReceiver(this);
}
};
public void showNotification(Context ctx, String text) {
Intent intent = new Intent(NOTIFICATION_DELETED_ACTION);
PendingIntent pendintIntent = PendingIntent.getBroadcast(ctx, 0, intent, 0);
registerReceiver(receiver, new IntentFilter(NOTIFICATION_DELETED_ACTION));
Notification n = new Notification.Builder(mContext).
setContentText(text).
setDeleteIntent(pendintIntent).
build();
NotificationManager.notify(0, n);
}
}
答案 1 :(得分:0)
安德烈(Andrei)是正确的。
如果要返回多条消息,例如:
您必须注册每个响应过滤器:
public void showNotification(Context ctx, String text) ()
{
/… create intents and pending intents same format as Andrie did../
/… you could also set up the style of your message box etc. …/
//need to register each response filter
registerReceiver(receiver, new IntentFilter(CLICK_ACTION));
registerReceiver(receiver, new IntentFilter(USER_RESPONSE_ACTION));
registerReceiver(receiver, new IntentFilter(NOTIFICATION_DELETED_ACTION));
Notification n = new Notification.Builder(mContext)
.setContentText(text)
.setContentIntent(pendingIntent) //Click action
.setDeleteIntent(pendingCancelIntent) //Cancel/Deleted action
.addAction(R.drawable.icon, "Title", pendingActionIntent) //Response action
.build();
NotificationManager.notify(0, n);
}
然后,您可以使用if,else语句(如Andrei所做的那样)或使用switch语句来捕获不同的响应。
注意:之所以做出此响应,主要是因为我在任何地方都找不到它,因此必须自己弄清楚。 (也许我会更好地记住它:-)玩得开心!