private void createNotificationChannel() {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
CharSequence name = getString(R.string.channel_name);
String description = getString(R.string.channel_description);
//不同的重要程度会影响通知显示的方式
int importance = NotificationManager.IMPORTANCE_DEFAULT;
NotificationChannel channel = new NotificationChannel(CHANNEL_ID, name, importance);
channel.setDescription(description);
NotificationManager notificationManager = getSystemService(NotificationManager.class);
notificationManager.createNotificationChannel(channel);
}
}
上述代码应该在应用启动时立即执行,可以放在 Application 中进行初始化。6 J8 H1 N( C. V$ a9 @% j' A 三、设置通知栏的点击操作/ `+ j" z# @3 r0 D6 n' R
一般点击通知栏会打开对应的 Activity 界面,具体代码如下: 5 W. T% B4 W ` B3 k2 y4 `; V