Android之Notification的多种用法

时间:2023-03-09 18:19:31
Android之Notification的多种用法

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

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

Android之Notification的多种用法Android之Notification的多种用法Android之Notification的多种用法

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

  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>