我们在用手机的时候,如果来了短信,而我们没有点击查看的话,是不是在手机的最上边的状态栏里有一个短信的小图标提示啊?你是不是也想实现这种功能呢?今天的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. c-连接两个链表

    概述 还是相对简单,不过要记得释放不用的头结点即可. 代码为: //将lList2头结点连接在lList1尾结点的后面. void combine(linklist lList1, linklist ...

  2. Asp.net 事务处理

    事务处理是在数据处理时经常遇到的问题,经常用到的方法有以下三种总结整理如下:方法1:直接写入到sql 中在存储过程中使用 BEGIN TRANS, COMMIT TRANS, ROLLBACK TRA ...

  3. 【USACO 2.2.3】循环数

    [题目描述] 循环数是那些不包括0且没有重复数字的整数(比如81362)并且还应同时具有一个有趣的性质, 就像这个例子: 如果你从最左边的数字开始(在这个例子中是8)向右数最左边这个数(如果数到了最右 ...

  4. sql server2008附加数据库5120错误

    解决方法: 附加数据库时,显示错误,错误信息为 一种解决方法为,设置mdf文件所在文件夹的权限(有些资料说只设置mdf文件的权限就好,但我试了不管用),在文件夹上右击——属性——安全,如图所示: 选择 ...

  5. 使用grunt压缩css是能否设置background-size不压缩进去呢?否则ie8不能识别

    .index-bg{ background:url(img/index-bg-t.5344b19d.jpg) center center/cover no-repeat } 比如上面这样ie8不能识别 ...

  6. [转]JS继承的5种实现方式

    参考链接: http://yahaitt.iteye.com/blog/250338 虽说书上都讲过继承的方式方法,但这些东西每看一遍都多少有点新收获,所以单独拿出来放着. 1. 对象冒充 funct ...

  7. jquery 实现文本框scroll上下动

    <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="C ...

  8. Python几种创建list的方法的效率对比

    我们用 生成一个0到((1万倍n)-1)的list做例子 首先这种方式复杂度为平方级 ''' def test1(n): lst = [] for i in range(n*10000): lst = ...

  9. Ubuntu安装配置Mysql

      三种安装方式: 1. 从网上安装 sudo apt-get install mysql-server.装完已经自动配置好环境变量,可以直接使用mysql的命令. 注:建议将/etc/apt/sou ...

  10. iphone升级ios7之后出现蓝框框一直跳的问题

    问题描述:iphone升级ios7之后出现蓝框框一直跳            解决办法:设置-通用-辅助功能-切换控制-里边打开了切换控制及自动扫描,直接关闭切换控制就好了