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

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

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

  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. }

再看主布局文件:

  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,代码如下:

    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>

Android之Notification的多种用法的更多相关文章

  1. Android之Notification的多种用法(转)

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

  2. Android 通知栏Notification的整合 全面学习 (一个DEMO让你完全了解它)

    在android的应用层中,涉及到很多应用框架,例如:Service框架,Activity管理机制,Broadcast机制,对话框框架,标题栏框架,状态栏框架,通知机制,ActionBar框架等等. ...

  3. android通知-Notification

    android中,当app需要向发送一些通知,让使用者注意到你想要告知的信息时,可以用Notification.下面,就来讨论一下,Notification的用法,我们从实际的小例子来进行学习. 1. ...

  4. Notification的基本用法以及使用RemoteView实现自定义布局

    Notification的作用 Notification是一种全局效果的通知,在系统的通知栏中显示.既然作为通知,其基本作用有: 显示接收到短消息.即时信息等 显示客户端的推送(广告.优惠.新闻等) ...

  5. Android 通知栏Notification的整合 全面学习 (一个DEMO让你全然了解它)

    在android的应用层中,涉及到非常多应用框架.比如:Service框架,Activity管理机制,Broadcast机制,对话框框架,标题栏框架,状态栏框架.通知机制,ActionBar框架等等. ...

  6. 【转】 [置顶] Android 通知栏Notification的整合 全面学习 (一个DEMO让你完全了解它)

    在Android的应用层中,涉及到很多应用框架,例如:Service框架,Activity管理机制,Broadcast机制,对话框框架,标题栏框架,状态栏框架,通知机制,ActionBar框架等等. ...

  7. Android View.setId(int id) 用法

    Android View.setId(int id) 用法 当要在代码中动态的添加View并且为其设置id时,如果直接用一个int值时,Studio会警告. 经过查询,动态设置id的方法有两种; 1. ...

  8. Android之Notification介绍

    Notification就是在桌面的状态通知栏.这主要涉及三个主要类: Notification:设置通知的各个属性. NotificationManager:负责发送通知和取消通知 Notifica ...

  9. Android Intent的几种用法全面总结

    Android Intent的几种用法全面总结 Intent, 用法 Intent应该算是Android中特有的东西.你可以在Intent中指定程序要执行的动作(比如:view,edit,dial), ...

随机推荐

  1. 使用ol,添加图书销售排行榜

    如果想在网页中展示有前后顺序的信息列表,怎么办呢?如,当当网上的书籍热卖排行榜,如下图所示. 这类信息展示就可以使用<ol>标签来制作有序列表来展示. 语法: <ol> < ...

  2. 【USACO 3.1.2】总分

    [描述] 学生在我们USACO的竞赛中的得分越多我们越高兴.我们试着设计我们的竞赛以便人们能尽可能的多得分,这需要你的帮助.我们可以从几个种类中选取竞赛的题目,这里的一个"种类"是 ...

  3. 使用C#连接ORACLE数据库

    一.使用OracleClient组件连接Oracle   .Net框架的System.Data.OracleClient.dll组件(ADO.Net组件),为连接和使用Oracle数据库提供了很大的方 ...

  4. vim插件和配置

    vim插件和配置 插件 pathogen 可以方便地管理vim插件 在没有pathogen的情况下,vim插件的文件全部都放在.vim目录,卸载插件很麻烦,pathogen可以将不同的插件放在一个单独 ...

  5. Delphi-UpperCase 函数

    函数名称 UpperCase 所在单元 System.SysUtils 函数原型 function UpperCase(const S: string): string; 函数功能 将字符串中所有的小 ...

  6. APP如何设计才能适配iphone6/plus和iphone5

    随着苹果发布两种新尺寸的大屏iPhone 6,iOS平台尺寸适配问题终于还是来了,移动设计全面进入"杂屏"时代.看看下面三款iPhone尺寸和分辨率数据就知道屏幕有多杂了. 移动a ...

  7. js-ajax实现获取xmlHttp对象

    //获取xmlHttp对象 function createXMLHttp() { var xmlhttp; //对于大多数浏览器适用 if (window.XMLHttpRequest) { xmlh ...

  8. WordPress网站更换老鹰主机详细操作

    眼看着之前买的虚拟主机就要到期了,本着节约至上的美德,就和同事一起买了老鹰主机.因为第一次网站的配置是一个朋友帮忙的,所以现在想完全自己动手操作,毕竟之后的博客维护还是得靠自己.下面就来和我一起学习怎 ...

  9. mapreduce (二) MapReduce实现倒排索引(一) combiner是把同一个机器上的多个map的结果先聚合一次

    1 思路:0.txt MapReduce is simple1.txt MapReduce is powerfull is simple2.txt Hello MapReduce bye MapRed ...

  10. matplotlib绘制精美的图表(这是教程哦)

    http://sebug.net/paper/books/scipydoc/matplotlib_intro.html