从服务中,我会显示通知。我有这段代码:
public final static int NOTIFICATION = 1;
public final static int NOTIFICATION2 = 2;
case NOTIFICATION2:
builder.setSmallIcon(R.drawable.ic_action_about);
builder.setContentTitle(context.getString(R.string.app_name));
new Thread(new Runnable() {
@Override
public void run() {
// TODO Auto-generated method stub
for(int i=0;i<10;i++) {
builder.setContentInfo(i+"/"+10);
notificationManager.notify(NOTIFICATION2, builder.build());
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
}).start();
notificationManager.cancel(NOTIFICATION2);
break;
代码工作正常,但是当线程完成时,通知仍然存在。为什么?我想取消它,cancel()
无效。
答案 0 :(得分:0)
因为您启动显示通知的异步线程,所以会立即调用notificationManager.cancel(NOTIFICATION2);
。这意味着当您取消通知时,您的通知尚未显示。
尝试将notificationManager.cancel(NOTIFICATION2);
移动到run()方法中。