private Notification buildNotification() {
String channelId;
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
channelId = "GaoDeLocationService";
String channelName = "GaoDeLocationService";
createNotificationChannel(channelId, channelName);
} else {
channelId = "";
}
NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this, channelId);
NotificationCompat.Builder builder =
notificationBuilder.setOngoing(true)
.setSmallIcon(R.drawable.icon_vas_logo)
.setVibrate(null)
.setSound(null)
.setContentTitle("大虾师傅")
.setContentText("正在后台运行")
.setVisibility(NotificationCompat.VISIBILITY_SECRET)
.setPriority(NotificationCompat.PRIORITY_MAX);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
builder.setCategory(Notification.CATEGORY_SERVICE);
}
return builder.build();
}
@RequiresApi(Build.VERSION_CODES.O)
private void createNotificationChannel(String channelId, String channelName) {
NotificationManager service = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
if (service == null || service.getNotificationChannel(channelId) != null) {
return;
}
NotificationChannel chan = new NotificationChannel(channelId,
channelName, NotificationManager.IMPORTANCE_NONE);
chan.setLightColor(Color.BLUE);
chan.enableVibration(false);
chan.setVibrationPattern(new long[]{0});
chan.setSound(null, null);
chan.setLockscreenVisibility(Notification.VISIBILITY_PRIVATE);
service.createNotificationChannel(chan);
}
NotificationCompat 助力显示锁屏通知 和设置通知为最重要
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 【蝴蝶效应】 蝴蝶效应:上个世纪70年代,美国一个名叫洛伦兹的气象学家在解释空气系统理论时说,亚马逊雨林一只蝴蝶...
- 新建Activity,并在activity的onCreate()方法中设置flags 在AndroidManife...
- 网上关于这个的使用有很多,我就不做那么多的介绍了,说说5.0以后的锁屏通知栏显示和页面的悬浮通知显示。Notifi...
- 步骤一:打开我们的系统设置中心 步骤二:打开通知管理 步骤三:点击锁屏通知 最后点击显示规则,然后在底部的筛选列表...