android 桌面通知notify

Posted Reboost

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android 桌面通知notify相关的知识,希望对你有一定的参考价值。

private void sendNotify() {
 NotificationManager manager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
 NotificationCompat.Builder builder = new NotificationCompat.Builder(MainActivity.this,"default");
 Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("https://www.baidu.com"));  // 此处根据需要改为打开应用
 PendingIntent pi = PendingIntent.getActivity(MainActivity.this, 0, intent, 0);
 Notification notify = builder.setSmallIcon(R.mipmap.ic_launcher_round)
 .setPriority(Notification.PRIORITY_DEFAULT) //通知的优先级
 .setCategory(Notification.CATEGORY_MESSAGE) //通知的类型
 .setContentTitle("Order Notify")
 .setAutoCancel(true)
 .setContentIntent(pi)
 .setContentText("a new order message")
 .setFullScreenIntent(pi, true) //不设置此项不会悬挂,false 不会出现悬挂
 .build(); 
  manager.notify(1,notify);
}
















以上是关于android 桌面通知notify的主要内容,如果未能解决你的问题,请参考以下文章

如何在移动设备上发送推送通知(Android Chrome)PWA

Android 4.0 Launcher2源码分析——主布局文件(转)

如何向 GCM 发布通知

android设置消息角标

Android系统实现应用角标未读消息数原理

使用Python获取桌面通知