久久r热视频,国产午夜精品一区二区三区视频,亚洲精品自拍偷拍,欧美日韩精品二区

您的位置:首頁(yè)技術(shù)文章
文章詳情頁(yè)

Android 8.0實(shí)現(xiàn)發(fā)送通知

瀏覽:8日期:2022-09-23 09:55:03

在Android8.0以后,針對(duì)Notification 通知api做了修改,新增了通知渠道(NotificationCannel)。下面就把demo的詳細(xì)代碼記錄下:

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 類(lèi)

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 channelmediaChannel )); }}

3.發(fā)送通知

public void sendSimpleNotification(Context context, NotificationManager nm) { //創(chuàng)建點(diǎn)擊通知時(shí)發(fā)送的廣播 Intent intent = new Intent(context, NotificationMonitorService.class); intent.setAction('android.service.notification.NotificationListenerService'); PendingIntent pi = PendingIntent.getService(context,0,intent,0); //創(chuàng)建刪除通知時(shí)發(fā)送的廣播 Intent deleteIntent = new Intent(context,NotificationMonitorService.class); deleteIntent.setAction(Intent.ACTION_DELETE); PendingIntent deletePendingIntent = PendingIntent.getService(context,0,deleteIntent,0); //創(chuàng)建通知 Notification.Builder nb = new Notification.Builder(context, NotificationChannels.DEFAULT)//設(shè)置通知左側(cè)的小圖標(biāo).setSmallIcon(R.drawable.ic_notification)//設(shè)置通知標(biāo)題.setContentTitle('Simple notification')//設(shè)置通知內(nèi)容.setContentText('Demo for simple notification!')//設(shè)置點(diǎn)擊通知后自動(dòng)刪除通知.setAutoCancel(true)//設(shè)置顯示通知時(shí)間.setShowWhen(true)//設(shè)置通知右側(cè)的大圖標(biāo).setLargeIcon(BitmapFactory.decodeResource(context.getResources(),R.drawable.ic_notifiation_big))//設(shè)置點(diǎn)擊通知時(shí)的響應(yīng)事件.setContentIntent(pi)//設(shè)置刪除通知時(shí)的響應(yīng)事件.setDeleteIntent(deletePendingIntent); //發(fā)送通知 nm.notify(Notificaitons.NOTIFICATION_SAMPLE,nb.build()); }

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持好吧啦網(wǎng)。

標(biāo)簽: Android
相關(guān)文章:
主站蜘蛛池模板: 昭觉县| 洪湖市| 上犹县| 宜城市| 洮南市| 博野县| 运城市| 南和县| 衡阳市| 石嘴山市| 山东省| 湖北省| 湄潭县| 延庆县| 南丰县| 波密县| 布拖县| 信阳市| 南皮县| 云和县| 修文县| 吴江市| 阿克陶县| 新丰县| 水富县| 深州市| 长子县| 黄山市| 江城| 安西县| 延安市| 和龙市| 库伦旗| 诸城市| 灯塔市| 海林市| 长宁县| 越西县| 丰原市| 天峨县| 甘南县|