Android Notification 通知封装成工具类

Posted 台风中的橘子

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android Notification 通知封装成工具类相关的知识,希望对你有一定的参考价值。

  1. public class NotificationUtils   
  2.   
  3.     private static NotificationManager mNotificationManager;  
  4.     private static Notification notification;  
  5.   
  6.     /** 
  7.      * 创建通知,  * 请在调用此方法时开启子线程 
  8.      * 
  9.      * @param context    上下文 
  10.      * @param icon       通知图片 
  11.      * @param tickerText 通知未拉开的内容 
  12.      * @param title      通知标题 
  13.      * @param content    通知主内容 
  14.      * @param intent     意图 
  15.      * @param id 
  16.      * @param time       控制线程睡眠时间 
  17.      */  
  18.     public static void createNotif(Context context, int icon, String tickerText, String title, String content, Intent intent, int id, long time)   
  19.         intent.addCategory(Intent.CATEGORY_LAUNCHER);  
  20.         intent.setAction(Intent.ACTION_MAIN);  
  21.         //intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);  
  22.         PendingIntent pendingIntent = PendingIntent.getActivity(context, id, intent, PendingIntent.FLAG_UPDATE_CURRENT);  
  23.   
  24.         mNotificationManager = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);  
  25.         NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(context);  
  26.         mBuilder.setContentTitle(title)  
  27.                 .setContentText(content)  
  28.                 .setContentIntent(pendingIntent)  
  29.                 .setTicker(tickerText)  
  30.                 .setWhen(System.currentTimeMillis())  
  31.                 .setPriority(Notification.PRIORITY_DEFAULT)  
  32.                 .setOngoing(false)  
  33.                 .setAutoCancel(true)  
  34.                 .setDefaults(Notification.DEFAULT_SOUND)  
  35.                 .setSmallIcon(icon);  
  36.   
  37.         notification = mBuilder.build();  
  38.   
  39.         notification.flags = Notification.FLAG_ONGOING_EVENT;  
  40.         notification.flags = Notification.FLAG_AUTO_CANCEL;  
  41.   
  42.         mNotificationManager.notify(id, notification);  
  43.   
  44.         try   
  45.             Thread.sleep(time);  
  46.          catch (InterruptedException e)   
  47.             e.printStackTrace();  
  48.           
  49.   
  50.       
  51.   
  52.   
  53.  

以上是关于Android Notification 通知封装成工具类的主要内容,如果未能解决你的问题,请参考以下文章

Android学习笔记(32):通知推送Notification

Android通知Notification详解

android笔记:Notification通知的使用

Android中使用Notification实现宽通知栏(Notification示例二)

Android通知——Notification

Android通知——Notification