[置顶] Android之Notification使用大全

     在3.0以后官方就推荐用建造者模式建Notification   
     
      总结了在各种API下Notification的使用情况、关于自定义通知栏的RemoteView的使用可以参考任永刚大神的《Android开发艺术探索》第五章,本人后续也会整理总结,方便日后使用




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

猜你喜欢

转载自blog.csdn.net/yzwty/article/details/52281270
今日推荐