我们在用手机的时候,如果来了短信,而我们没有点击查看的话,是不是在手机的最上边的状态栏里有一个短信的小图标提示啊?你是不是也想实现这种功能呢?今天的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. dotnet与各种数据库类型对应关系

    Data Provider Parameter format sqlclient @parametername oledb ?    mark odbc ?   mark oracleclient : ...

  2. Css四种样式

    1. 2 3 4 5 6.

  3. cas sso单点登录系列6_cas单点登录防止登出退出后刷新后退ticket失效报500错

    转(http://blog.csdn.net/ae6623/article/details/9494601) 问题: 我登录了client2,又登录了client3,现在我把client2退出了,在c ...

  4. 装饰者模式(Decorator)

    首先来看一个例子: 比如,饮料可以分为很多种类,而这里我取一个咖啡,那么这个咖啡呢,有多种形式的, 比如有加糖了的咖啡,有加奶的咖啡,也有加热了的咖啡,也有加了冰块的咖啡. 而各个顾客的选择却是不同的 ...

  5. Java学习----Java数据类型

    1.基本数据类型(8种) 数字类型: 整数: byte :-128~+127 short :-32768~+32767 int: -2147483648~+2147483637 long 小数类型: ...

  6. PHP mongoDB 操作

    <?php /** * PHP操作MongoDB学习笔记 */ //************************* //** 连接MongoDB数据库 **// //************ ...

  7. CodeForces 474B(标记用法)

    CodeForces 474B Time Limit:1000MS Memory Limit:262144KB   64bit IO Format:%I64d & %I64u Descript ...

  8. android.os.NetworkOnMainThreadException异常处理办法

    网上搜索后知道是因为版本问题,在4.0之后在主线程里面执行Http请求都会报这个错,也许是怕Http请求时间太长造成程序假死的情况吧. 在发起Http请求的Activity里面的onCreate函数里 ...

  9. 转:MySQL导入.sql文件及常用命令

    在MySQL Qurey   Brower中直接导入*.sql脚本,是不能一次执行多条sql命令的,在mysql中执行sql文件的命令: mysql> source   d:/myprogram ...

  10. Android ContentProvider 简介

    当在系统中部署一个又一个Android应用之后,系统里将会包含多个Android应用,有时候就需要在小同的应用之问芡亭数据,比如现在有一个短信接收应用,用户想把接收到的陌生短信的发信人添加到联系人管理 ...