我们在用手机的时候,如果来了短信,而我们没有点击查看的话,是不是在手机的最上边的状态栏里有一个短信的小图标提示啊?你是不是也想实现这种功能呢?今天的Notification就是解决这个问题的。

我们也知道Android系统也是在不断升级的,有关Notification的用法也就有很多种,有的方法已经被android抛弃了,现在我实现了三种不同的方法,并适应不同的android版本。现在我就把代码公布出来,我喜欢把解释写在代码中,在这里我就不多说了,先看效果图:

再看代码,主要的代码如下:

[java] view plaincopy
  1. package net.loonggg.notification;
  2. import android.app.Activity;
  3. import android.app.Notification;
  4. import android.app.NotificationManager;
  5. import android.app.PendingIntent;
  6. import android.content.Context;
  7. import android.content.Intent;
  8. import android.os.Bundle;
  9. import android.view.View;
  10. import android.widget.RemoteViews;
  11. public class MainActivity extends Activity {
  12. private static final int NOTIFICATION_FLAG = 1;
  13. @Override
  14. protected void onCreate(Bundle savedInstanceState) {
  15. super.onCreate(savedInstanceState);
  16. setContentView(R.layout.activity_main);
  17. }
  18. public void notificationMethod(View view) {
  19. // 在Android进行通知处理,首先需要重系统哪里获得通知管理器NotificationManager,它是一个系统Service。
  20. NotificationManager manager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
  21. switch (view.getId()) {
  22. // 默认通知
  23. case R.id.btn1:
  24. // 创建一个PendingIntent,和Intent类似,不同的是由于不是马上调用,需要在下拉状态条出发的activity,所以采用的是PendingIntent,即点击Notification跳转启动到哪个Activity
  25. PendingIntent pendingIntent = PendingIntent.getActivity(this, 0,
  26. new Intent(this, MainActivity.class), 0);
  27. // 下面需兼容Android 2.x版本是的处理方式
  28. // Notification notify1 = new Notification(R.drawable.message,
  29. // "TickerText:" + "您有新短消息,请注意查收!", System.currentTimeMillis());
  30. Notification notify1 = new Notification();
  31. notify1.icon = R.drawable.message;
  32. notify1.tickerText = "TickerText:您有新短消息,请注意查收!";
  33. notify1.when = System.currentTimeMillis();
  34. notify1.setLatestEventInfo(this, "Notification Title",
  35. "This is the notification message", pendingIntent);
  36. notify1.number = 1;
  37. notify1.flags |= Notification.FLAG_AUTO_CANCEL; // FLAG_AUTO_CANCEL表明当通知被用户点击时,通知将被清除。
  38. // 通过通知管理器来发起通知。如果id不同,则每click,在statu那里增加一个提示
  39. manager.notify(NOTIFICATION_FLAG, notify1);
  40. break;
  41. // 默认通知 API11及之后可用
  42. case R.id.btn2:
  43. PendingIntent pendingIntent2 = PendingIntent.getActivity(this, 0,
  44. new Intent(this, MainActivity.class), 0);
  45. // 通过Notification.Builder来创建通知,注意API Level
  46. // API11之后才支持
  47. Notification notify2 = new Notification.Builder(this)
  48. .setSmallIcon(R.drawable.message) // 设置状态栏中的小图片,尺寸一般建议在24×24,这个图片同样也是在下拉状态栏中所显示,如果在那里需要更换更大的图片,可以使用setLargeIcon(Bitmap
  49. // icon)
  50. .setTicker("TickerText:" + "您有新短消息,请注意查收!")// 设置在status
  51. // bar上显示的提示文字
  52. .setContentTitle("Notification Title")// 设置在下拉status
  53. // bar后Activity,本例子中的NotififyMessage的TextView中显示的标题
  54. .setContentText("This is the notification message")// TextView中显示的详细内容
  55. .setContentIntent(pendingIntent2) // 关联PendingIntent
  56. .setNumber(1) // 在TextView的右方显示的数字,可放大图片看,在最右侧。这个number同时也起到一个序列号的左右,如果多个触发多个通知(同一ID),可以指定显示哪一个。
  57. .getNotification(); // 需要注意build()是在API level
  58. // 16及之后增加的,在API11中可以使用getNotificatin()来代替
  59. notify2.flags |= Notification.FLAG_AUTO_CANCEL;
  60. manager.notify(NOTIFICATION_FLAG, notify2);
  61. break;
  62. // 默认通知 API16及之后可用
  63. case R.id.btn3:
  64. PendingIntent pendingIntent3 = PendingIntent.getActivity(this, 0,
  65. new Intent(this, MainActivity.class), 0);
  66. // 通过Notification.Builder来创建通知,注意API Level
  67. // API16之后才支持
  68. Notification notify3 = new Notification.Builder(this)
  69. .setSmallIcon(R.drawable.message)
  70. .setTicker("TickerText:" + "您有新短消息,请注意查收!")
  71. .setContentTitle("Notification Title")
  72. .setContentText("This is the notification message")
  73. .setContentIntent(pendingIntent3).setNumber(1).build(); // 需要注意build()是在API
  74. // level16及之后增加的,API11可以使用getNotificatin()来替代
  75. notify3.flags |= Notification.FLAG_AUTO_CANCEL; // FLAG_AUTO_CANCEL表明当通知被用户点击时,通知将被清除。
  76. manager.notify(NOTIFICATION_FLAG, notify3);// 步骤4:通过通知管理器来发起通知。如果id不同,则每click,在status哪里增加一个提示
  77. break;
  78. // 自定义通知
  79. case R.id.btn4:
  80. // Notification myNotify = new Notification(R.drawable.message,
  81. // "自定义通知:您有新短信息了,请注意查收!", System.currentTimeMillis());
  82. Notification myNotify = new Notification();
  83. myNotify.icon = R.drawable.message;
  84. myNotify.tickerText = "TickerText:您有新短消息,请注意查收!";
  85. myNotify.when = System.currentTimeMillis();
  86. myNotify.flags = Notification.FLAG_NO_CLEAR;// 不能够自动清除
  87. RemoteViews rv = new RemoteViews(getPackageName(),
  88. R.layout.my_notification);
  89. rv.setTextViewText(R.id.text_content, "hello wrold!");
  90. myNotify.contentView = rv;
  91. Intent intent = new Intent(Intent.ACTION_MAIN);
  92. PendingIntent contentIntent = PendingIntent.getActivity(this, 1,
  93. intent, 1);
  94. myNotify.contentIntent = contentIntent;
  95. manager.notify(NOTIFICATION_FLAG, myNotify);
  96. break;
  97. case R.id.btn5:
  98. // 清除id为NOTIFICATION_FLAG的通知
  99. manager.cancel(NOTIFICATION_FLAG);
  100. // 清除所有的通知
  101. // manager.cancelAll();
  102. break;
  103. default:
  104. break;
  105. }
  106. }
  107. }

再看主布局文件:

[html] view plaincopy
  1. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:tools="http://schemas.android.com/tools"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:orientation="vertical"
  6. tools:context=".MainActivity" >
  7. <Button
  8. android:id="@+id/btn1"
  9. android:layout_width="fill_parent"
  10. android:layout_height="wrap_content"
  11. android:onClick="notificationMethod"
  12. android:text="默认通知(已被抛弃,但是通用)" />
  13. <Button
  14. android:id="@+id/btn2"
  15. android:layout_width="fill_parent"
  16. android:layout_height="wrap_content"
  17. android:onClick="notificationMethod"
  18. android:text="默认通知(API11之后可用)" />
  19. <Button
  20. android:id="@+id/btn3"
  21. android:layout_width="fill_parent"
  22. android:layout_height="wrap_content"
  23. android:onClick="notificationMethod"
  24. android:text="默认通知(API16之后可用)" />
  25. <Button
  26. android:id="@+id/btn4"
  27. android:layout_width="fill_parent"
  28. android:layout_height="wrap_content"
  29. android:onClick="notificationMethod"
  30. android:text="自定义通知" />
  31. <Button
  32. android:id="@+id/btn5"
  33. android:layout_width="fill_parent"
  34. android:layout_height="wrap_content"
  35. android:onClick="notificationMethod"
  36. android:text="清除通知" />
  37. </LinearLayout>

还有一个是:自定义通知的布局文件my_notification.xml,代码如下:

[html] view plaincopy
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="wrap_content"
  5. android:background="#ffffff"
  6. android:orientation="vertical" >
  7. <TextView
  8. android:id="@+id/text_content"
  9. android:layout_width="wrap_content"
  10. android:layout_height="wrap_content"
  11. android:textSize="20sp" />
  12. </LinearLayout>

Notification相关推荐

  1. Notification 使用详解

    录制了一个gif 图大家看看效果 由于手机厂商修改问题,这个显示可能存在差役,但是这个提示框都是会显示的,运行是在android 7 8 ,9 三个版本运行的都没有问题 下面开始介绍它的使用 Noti ...

  2. Notification和KVO有什么不同

    Notification是推送通知,我们可以建立一个通知中心,存放创建多个通知,在不同的地方在需要的时候push调用 和KVO不同的是,KVO是键值观察,只能观察一个值,这就是区别 转载于:https ...

  3. 点击Notification正确回调到之前已经放置在后台的Task中的对应Activity,而不是创建它的一个新实例...

    NotificationManager notificationManager = (NotificationManager)getSystemService(NOTIFICATION_SERVICE ...

  4. 谷歌 notification 测试 页面

    1 <button onclick="notifyMe('master wei','http://cdn.sstatic.net/stackexchange/img/logos/so/ ...

  5. android8 通知呼吸灯_Android中通知Notification使用实例(振动、灯光、声音)

    本文实例讲解了通知Notification使用方法,此知识点就是用作通知的显示,包括振动.灯光.声音等效果,分享给大家供大家参考,具体内容如下 效果图: MainActivity: import ja ...

  6. notification antd 弹窗使用示例

    示例代码 import { notification } from 'antd';notification.error({description: '您的网络发生异常,无法连接服务器',message ...

  7. android之Notification通知

    我们在用手机的时候,如果来了短信,而我们没有点击查看的话,是不是在手机的最上边的状态栏里有一个短信的小图标提示啊?你是不是也想实现这种功能呢?今天的Notification就是解决这个问题的. pac ...

  8. gitlab+jenkins+maven+docker持续集成(四)——Extended E-mail Notification配置

    构建后进行邮件通知,这里我们用Extended E-mail Notification 系统管理-->Extended E-mail Notification 在这里subject.conten ...

  9. ORACLE HANDBOOK系列之十四:变化通知(Change Notification)

    在App开发的过程中,有些数据访问频率很高但是数据变化不大,我们一般会让它驻留内存以提高访问性能,但是此种机制存在一个问题,那就是如何监测数据的变化,Oracle 10g中引入的 Change Not ...

  10. android notification 定时显示,Android编程使用Service实现Notification定时发送功能示例...

    本文实例讲述了android编程使用service实现notification定时发送功能.分享给大家供大家参考,具体如下: /** * 通过启动或停止服务来管理通知功能 * * @descripti ...

最新文章

  1. pbar PermissionError
  2. struts2从action向jsp传参数
  3. 剑指Offer #09 变态跳台阶(数列推导)
  4. mysql数据库制定位置_MySQL数据库在指定位置增加字段
  5. 设置tomcat 编译文件位置【转】
  6. 使用Hybris Commerce User API读取用户信息时,电话字段没有返回
  7. Box 'laravel/homestead' could not be found.
  8. c语言下面程序的功能是求圆的周长和面积.请改正程序中带*行中,2012年计算机等级考试二级C语言上机题(5)...
  9. 重庆最狠的火锅,都是用来泡脚的
  10. 苹果Siri 部门前负责人加入微软人工智能部门
  11. SqlBulkCopy做大数据插入
  12. linux中配置vsftpd
  13. 以xml格式发送外部系统交易错误_在知行EDI系统中实施SNIP验证
  14. IntelliJ IDEA开发Java笔记
  15. max3232ese_max3232中文资料汇总(max3232引脚功能图_特性参数及应用电路)
  16. [转载]Windows系统的错误报告保存在哪个文件夹里?
  17. App Thinning研究
  18. pandas后台导出excel_利用pandas将numpy数组导出生成excel
  19. 软件测试入职工作流程
  20. ROUGE和pyrouge的安装

热门文章

  1. 安卓多台手机之间屏幕同步与pc通过adb控制手机
  2. AbMole推荐:人源化单抗动物实验黄金指南 (上)
  3. PL/SQL中存储过程int和out的用法
  4. 变电站3D仿真实训系统的特色及优势
  5. 演讲者模式投影到幕布也看到备注_演讲者备注怎么显示
  6. python求球的表面积_python-Hypar的表面积(双曲线抛物面)
  7. 【计算机网络】频带和频段(图解易懂)
  8. 浅谈加密技术在电子商务中的应用
  9. 大数据告诉你,其实中国电影票房的最强锦鲤,不是吴京
  10. [fyne] build constraints exclude all Go files in