时间:2021-05-21
在Android8.0以后,针对Notification 通知api做了修改,新增了通知渠道(NotificationCannel)。下面就把demo的详细代码记录下:
1.Application 为NotificationManager添加通知频道
import android.app.Application;import com.xinrui.ndkapp.notification.NotificationChannels;public class NdkApplication extends Application { @Override public void onCreate() { super.onCreate(); NotificationChannels.createAllNotificationChannels(this); }}2.NotificationChannels 类
public class NotificationChannels { public final static String CRITICAL = "critical"; public final static String IMPORTANCE = "importance"; public final static String DEFAULT = "default"; public final static String LOW = "low"; public final static String MEDIA = "media"; public static void createAllNotificationChannels(Context context) { NotificationManager nm = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE); if(nm == null) { return; } NotificationChannel mediaChannel = new NotificationChannel( MEDIA, context.getString(R.string.app_name), NotificationManager.IMPORTANCE_DEFAULT); mediaChannel.setSound(null,null); mediaChannel.setVibrationPattern(null); nm.createNotificationChannels(Arrays.asList( new NotificationChannel( CRITICAL, context.getString(R.string.app_name), NotificationManager.IMPORTANCE_HIGH), new NotificationChannel( IMPORTANCE, context.getString(R.string.app_name), NotificationManager.IMPORTANCE_DEFAULT), new NotificationChannel( DEFAULT, context.getString(R.string.app_name), NotificationManager.IMPORTANCE_LOW), new NotificationChannel( LOW, context.getString(R.string.app_name), NotificationManager.IMPORTANCE_MIN), //custom notification channel mediaChannel )); }}3.发送通知
public void sendSimpleNotification(Context context, NotificationManager nm) { //创建点击通知时发送的广播 Intent intent = new Intent(context, NotificationMonitorService.class); intent.setAction("android.service.notification.NotificationListenerService"); PendingIntent pi = PendingIntent.getService(context,0,intent,0); //创建删除通知时发送的广播 Intent deleteIntent = new Intent(context,NotificationMonitorService.class); deleteIntent.setAction(Intent.ACTION_DELETE); PendingIntent deletePendingIntent = PendingIntent.getService(context,0,deleteIntent,0); //创建通知 Notification.Builder nb = new Notification.Builder(context, NotificationChannels.DEFAULT) //设置通知左侧的小图标 .setSmallIcon(R.drawable.ic_notification) //设置通知标题 .setContentTitle("Simple notification") //设置通知内容 .setContentText("Demo for simple notification!") //设置点击通知后自动删除通知 .setAutoCancel(true) //设置显示通知时间 .setShowWhen(true) //设置通知右侧的大图标 .setLargeIcon(BitmapFactory.decodeResource(context.getResources(),R.drawable.ic_notifiation_big)) //设置点击通知时的响应事件 .setContentIntent(pi) //设置删除通知时的响应事件 .setDeleteIntent(deletePendingIntent); //发送通知 nm.notify(Notificaitons.NOTIFICATION_SAMPLE,nb.build()); }以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
android8.0安装apk需要请求未知来源权限//xml配置/***检测版本8.0*/publicvoidcheckOreo(){if(SdkVersion
本文实例讲述了Android发送邮件的方法。分享给大家供大家参考,具体如下:在android手机中实现发送邮件的功能也是不可缺少的。如何实现它呢?下面以简单的例
现在已经进入了2018年,Android8.0系统也逐渐开始普及起来了。三星今年推出的最新旗舰机GalaxyS9已经搭载了Android8.0系统,紧接着小米、
现在已经进入了2018年,Android8.0系统也逐渐开始普及起来了。三星今年推出的最新旗舰机GalaxyS9已经搭载了Android8.0系统,紧接着小米、
Android8.0之前未知应用安装权限默认开启,如下图所示8.0以下手机未知应用安装权限.pngAndroid8.0之后未知应用安装权限默认关闭,且权限入口隐