是否可以让通知在一段时间后自动消失?
问问题
7221 次
5 回答
4
您可以使用AlarmManager。我认为比 Android 服务更合适、更容易实现。
有了AlarmManager
您,您无需担心在时间完成之前运行某些东西。Android 会为您执行此操作,并在发生时发送广播。您的应用程序必须有一个接收器才能获得正确的意图。
看这些例子:
于 2013-03-27T02:48:06.117 回答
2
现在有一个选项叫做.setTimeoutAfter(long durationMs)
https://developer.android.com/reference/android/app/Notification.Builder.html#setTimeoutAfter(long)
于 2019-09-20T21:59:20.483 回答
1
是的,您可以创建一个在后台运行的服务,该服务将在五分钟后超时并删除您的通知。你是否“应该”真的这样做还有待商榷。应该有一个通知来通知用户......并且用户应该能够自行关闭它。
Service 是一个应用程序组件,可以在后台执行长时间运行的操作,并且不提供用户界面。
于 2013-03-26T22:41:06.100 回答
1
是的,这很容易。如果用户未阅读通知,则在收到通知的地方添加一个处理程序,然后删除通知。
@Override
public void onMessageReceived(RemoteMessage message) {
sendNotification(message.getData().toString);
}
添加通知代码
private void sendNotification(String messageBody) {
Intent intent = new Intent(this, MainActivity.class);
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, intent,
PendingIntent.FLAG_ONE_SHOT);
Uri defaultSoundUri= RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this)
.setSmallIcon(R.mipmap.ic_launcher)
.setContentTitle("TEST NOTIFICATION")
.setContentText(messageBody)
.setAutoCancel(true)
.setSound(defaultSoundUri)
.setContentIntent(pendingIntent);
NotificationManager notificationManager =
(NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
int id = 0;
notificationManager.notify(id, notificationBuilder.build());
removeNotification(id);
}
取消通知代码。
private void removeNotification(int id) {
Handler handler = new Handler();
long delayInMilliseconds = 20000;
handler.postDelayed(new Runnable() {
public void run() {
notificationManager.cancel(id);
}
}, delayInMilliseconds);
}
于 2016-08-16T09:53:27.430 回答
0
您还可以将经典的 Java Runnable 用于简单的小线程。
Handler h = new Handler();
long delayInMilliseconds = 5000;
h.postDelayed(new Runnable() {
public void run() {
mNotificationManager.cancel(id);
}
}, delayInMilliseconds);
也看这里:
于 2016-06-20T16:20:21.860 回答