如何实现Android的消息的通知栏
发布网友
发布时间:2022-04-22 03:41
我来回答
共1个回答
热心网友
时间:2023-07-05 18:29
IntentFilter filter = new IntentFilter();
// 为IntentFilter添加一个Action
filter.addAction(action);
registerReceiver(receiver, filter);
PendingIntent pendingIntent3 = PendingIntent.getActivity(getApplicationContext(), 0,
new Intent(getApplicationContext(), MainActivity.class), 0);
// 通过Notification.Builder来创建通知,注意API Level
// API16之后才支持
Notification notify3 = new Notification.Builder(getApplicationContext())
.setSmallIcon(R.drawable.logo1028)
.setContentTitle(getString(R.string.app_name))
.setContentText(getString(R.string.app_running))
.setContentIntent(pendingIntent3).build(); // 需要注意build()是在API
// level16及之后增加的,API11可以使用getNotificatin()来替代
notify3.flags |= Notification.FLAG_AUTO_CANCEL; // FLAG_AUTO_CANCEL表明当通知被用户点击时,通知将被清除。
// manager.notify(1, notify3);// 步骤4:通过通知管理器来发起通知。如果id不同,则每click,在status哪里增加一个提示
startForeground(1, notify3);