Android 通知栏的使用方法

作者:一条鱼和一片海 时间:2022-11-12 20:00:29 

目录
  • 一、设置通知内容

  • 二、创建渠道

  • 三、设置通知栏的点击操作

  • 四、显示通知

一、设置通知内容


//CHANNEL_ID,渠道ID,Android 8.0及更高版本必须要设置
   NotificationCompat.Builder builder = new NotificationCompat.Builder(this, CHANNEL_ID)
   //设置小图标
           .setSmallIcon(R.drawable.notification_icon)
           //设置标题
           .setContentTitle(textTitle)
           //设置内容
           .setContentText(textContent)
           //设置等级
           .setPriority(NotificationCompat.PRIORITY_DEFAULT);

二、创建渠道

在 Android 8.0 及更高版本上提供通知,需要在系统中注册应用的通知渠道。


   private void createNotificationChannel() {
       if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
           CharSequence name = getString(R.string.channel_name);
           String description = getString(R.string.channel_description);
           //不同的重要程度会影响通知显示的方式
           int importance = NotificationManager.IMPORTANCE_DEFAULT;
           NotificationChannel channel = new NotificationChannel(CHANNEL_ID, name, importance);
           channel.setDescription(description);

NotificationManager notificationManager = getSystemService(NotificationManager.class);
           notificationManager.createNotificationChannel(channel);
       }
   }

上述代码应该在应用启动时立即执行,可以放在 Application 中进行初始化。

三、设置通知栏的点击操作

一般点击通知栏会打开对应的 Activity 界面,具体代码如下:


//点击时想要打开的界面
   Intent intent = new Intent(this, AlertDetails.class);
   //一般点击通知都是打开独立的界面,为了避免添加到现有的activity栈中,可以设置下面的启动方式
   intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK);
   //创建activity类型的pendingIntent,还可以创建广播等其他组件
   PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, intent, 0);

NotificationCompat.Builder builder = new NotificationCompat.Builder(this, CHANNEL_ID)
           .setSmallIcon(R.drawable.notification_icon)
           .setContentTitle("My notification")
           .setContentText("Hello World!")
           .setPriority(NotificationCompat.PRIORITY_DEFAULT)
           //设置pendingIntent
           .setContentIntent(pendingIntent)
           //设置点击后是否自动消失
           .setAutoCancel(true);    

四、显示通知


   NotificationManagerCompat notificationManager = NotificationManagerCompat.from(this);
   //notificationId 相当于通知的唯一标识,用于更新或者移除通知
   notificationManager.notify(notificationId, builder.build());

还有很多特殊功能,可以直接查看官网教程进行设置。

来源:https://juejin.cn/post/6939531353042092068

标签:Android,通知栏
0
投稿

猜你喜欢

  • 浅谈Android手机的抢红包插件

    2021-08-13 01:04:36
  • c#数字图像处理的3种方法示例分享

    2021-10-09 09:56:51
  • 详解Spring框架入门

    2023-08-14 12:56:14
  • Java之单例模式实现方案详解

    2022-02-15 19:02:29
  • Mybatis配置错误:java.lang.ExceptionInInitializerError

    2021-12-31 16:58:59
  • 自定义log4j日志文件命名规则说明

    2021-11-21 16:55:51
  • mybatis源码解读之executor包懒加载功能 

    2022-09-17 00:28:05
  • Spring Bean 依赖注入常见错误问题

    2022-10-02 20:46:51
  • Android实现截屏方式整理(总结)

    2023-12-07 05:10:18
  • 详解Java双轴快速排序算法

    2023-10-05 15:50:14
  • C# WinForm实现图片浏览器

    2022-04-12 23:28:00
  • 开源自研内存分析利器Android Bitmap Monitor图片定位详解

    2023-02-04 13:45:36
  • Java BigDecimal案例详解

    2021-09-15 12:03:43
  • Java实战宠物店在线交易平台的实现流程

    2022-07-06 22:04:37
  • Android 实现界面刷新的几种方法

    2023-01-19 06:27:50
  • Java中的InputStreamReader和OutputStreamWriter源码分析_动力节点Java学院整理

    2022-10-13 10:46:53
  • Java8新特性Stream流实例详解

    2023-05-04 12:55:05
  • Java多线程Callable接口实现代码示例

    2021-08-06 14:29:01
  • Spring Boot与Spark、Cassandra系统集成开发示例

    2021-06-03 13:40:51
  • 详解Springboot之整合JDBCTemplate配置多数据源

    2023-05-03 13:40:43
  • asp之家 软件编程 m.aspxhome.com