从来好事天生俭,自古瓜儿苦后甜。这篇文章主要讲述Android开发学习——使用通知相关的知识,希望能为你提供帮助。
【Android开发学习——使用通知】在按照书中的例子使用通知在设备上没有通知,查找资料后发现android8后通知需要NotificationChannel,兼容 Android 8.0的通知如下:
NotificationManager notificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
Intent intent = new Intent(this,NotificationMain2Activity.class);
PendingIntent pi = PendingIntent.getActivity(this,0,intent,0);
// 构建 Notification
Notification.Builder builder = new Notification.Builder(this);
builder.setContentTitle("ContentTitle")
.setSmallIcon(R.drawable.ic_launcher_background)
.setContentText("Content Text Here")
.setContentIntent(pi)
.setAutoCancel(true);
// 兼容 Android 8.0
if (Build.VERSION.SDK_INT >
= Build.VERSION_CODES.O){
String channelId = "ET_Notification_001";
String channelName = "ETtNotificationName";
// 第三个参数表示通知的重要程度
NotificationChannel notificationChannel = new NotificationChannel(channelId, channelName, NotificationManager.IMPORTANCE_DEFAULT);
// 册后除非卸载再安装否则不改变
notificationManager.createNotificationChannel(notificationChannel);
builder.setChannelId(channelId);
}
// 发出通知
notificationManager.notify(1, builder.build());
推荐阅读
- 安卓使用SQLite将数据存储在本地并做简单处理的学习1
- Android Unterminated string at character
- 使用Power Apps 创建门户应用
- uniapp 腾讯地图sdk接入
- spring IOC - AnnotationConfigApplicationContext#this
- Android BroadcastReceiver传值
- Android Service作为后台一直运行监测案例
- uniapp实现锚点跳转
- uni-app阻止事件向父级冒泡