Android中通过Notification&NotificationManager实现消息通知

Android中通过Notification&NotificationManager实现消息通知,第1张

概述notification是一种让你的应用程序在没有开启情况下或在后台运行警示用户。它是看不见的程序组件(BroadcastReceiver,Service和不活跃的Activity)警示用户有需要注意的事件发生的最好途径。

notification是一种让你的应用程序在没有开启情况下或在后台运行警示用户。它是看不见的程序组件(broadcast Receiver,Service和不活跃的Activity)警示用户有需要注意的事件发生的最好途径。

  1、新建一个androID项目

    我新建项目的 minSdkVersion="11",targetSdkVersion="19"。也就是支持最低版本的3.0的。

  2、习惯性地打开项目清单文件AndroIDManifest.xml,添加一个权限:<uses-permission androID:name="androID.permission.VIBRATE"/> 不添加不行的。

  3、在布局activity_main.xml中添加几个按钮,样子就大概这样,垂直排版的linearLayout

具体代码

<linearLayout xmlns:androID="http://schemas.androID.com/apk/res/androID"  xmlns:tools="http://schemas.androID.com/tools"  androID:layout_wIDth="match_parent"  androID:layout_height="match_parent"  androID:paddingBottom="@dimen/activity_vertical_margin"  androID:paddingleft="@dimen/activity_horizontal_margin"  androID:paddingRight="@dimen/activity_horizontal_margin"  androID:paddingtop="@dimen/activity_vertical_margin"  androID:orIEntation="vertical"  tools:context=".MainActivity" >    <button       androID:ID="@+ID/btn_01"      androID:layout_wIDth="match_parent"      androID:layout_height="wrap_content"      androID:text="3.0以前版本的notification,用新的吧"      androID:onClick="click"      />    <button       androID:ID="@+ID/btn_02"      androID:layout_wIDth="match_parent"      androID:layout_height="wrap_content"      androID:text="大视图文本通知"      androID:onClick="click"      />    <button       androID:ID="@+ID/btn_03"      androID:layout_wIDth="match_parent"      androID:layout_height="wrap_content"      androID:text="大视图图片通知"      androID:onClick="click"      />    <button       androID:ID="@+ID/btn_04"      androID:layout_wIDth="match_parent"      androID:layout_height="wrap_content"      androID:text="进度条通知"      androID:onClick="click"      /></linearLayout>

   

4、MainActivity中的代码:

 package com.xin.day__notificationdemo;  import java.util.Timer;  import java.util.TimerTask;  import androID.app.Activity;  import androID.app.Notification;  import androID.app.notificationmanager;  import androID.app.PendingIntent; import androID.content.Intent; import androID.graphics.BitmapFactory; import androID.os.Bundle; import androID.support.v.app.NotificationCompat; import androID.support.v.app.NotificationCompat.BigPictureStyle; import androID.support.v.app.NotificationCompat.BigTextStyle; import androID.support.v.app.NotificationCompat.Builder; import androID.util.Log; import androID.vIEw.VIEw; public class MainActivity extends Activity {   //通知的唯一标识,在一个应用程序中不同的通知要区别开来   private static final int NO = x;   private static final int NO = x;   private static final int NO = x;   private static final int NO = x;   //进度条要用   private int progress = ;   @OverrIDe   protected voID onCreate(Bundle savedInstanceState) {     super.onCreate(savedInstanceState);     setContentVIEw(R.layout.activity_main);   }   //click方法,和xml文件中的各个按钮的onClick属性的值要一致   public voID click(VIEw vIEw) {     //创建notificationmanager     final notificationmanager manager = (notificationmanager) getSystemService(NOTIFICATION_SERVICE);     //用switch语句控制四个控件     switch (vIEw.getID()) {     case R.ID.btn_: {       Notification notification = new Notification();       notification.icon = R.drawable.ic_launcher;       notification.tickerText = "有消息了。。。";       Intent intent = new Intent(this,MainActivity.class);       PendingIntent pendingIntent = PendingIntent.getActivity(this,intent,PendingIntent.FLAG_UPDATE_CURRENT);       notification.setLatestEventInfo(this,".以前的通知","试试而已",pendingIntent);       notification.when = System.currentTimeMillis();       notification.defaults = Notification.DEFAulT_ALL;       notification.flags = Notification.FLAG_auto_CANCEL;       notification.number = ;       notification.vibrate = new long[]{,};       manager.notify(NO,notification);     }     break;     case R.ID.btn_:{       //大视图文本通知       //创建消息构造器,在扩展包       NotificationCompat.Builder builder = new NotificationCompat.Builder(this);       //设置当有消息是的提示,图标和提示文字       builder.setSmallicon(R.drawable.ic_launcher).setTicker("有新消息了");       //需要样式       BigTextStyle style = new BigTextStyle();       style.setBigContentTitle("上课通知");//通知的标题       style.bigText("今天下午要在综B上Jsp");//通知的文本内容       //大视图文本具体内容       style.setSummaryText("这是正常的课程安排,请各位同学按时上课");       builder.setStyle(style);       //显示消息到达的时间,这里设置当前时间       builder.setWhen(System.currentTimeMillis());       //获取一个通知对象       Notification notification = builder.build();       notification.flags = Notification.FLAG_auto_CANCEL;       //发送(显示)通知       //notify()第一个参数ID An IDentifIEr for this notification unique within your application       //get?意思说,这个通知在你的应用程序中唯一的标识符       manager.notify(NO,notification);     }     break;     case R.ID.btn_:{       //大视图图片通知       NotificationCompat.Builder builderPic = new Builder(this);       builderPic.setSmallicon(R.drawable.ic_launcher).setTicker("新浪体育提醒");       //进行设置       BigPictureStyle pictureStyle = new BigPictureStyle();       pictureStyle.setBigContentTitle("新浪体育 快船VS骑士 ");       pictureStyle.bigPicture(BitmapFactory.decodeResource(getResources(),R.drawable.ic_game));       pictureStyle.setSummaryText(" 快船VS骑士 天王山之战!!!");//不要在意文字       //设置样式       builderPic.setStyle(pictureStyle);       //设置显示的时间       builderPic.setWhen(System.currentTimeMillis());       Notification notification = pictureStyle.build();       notification.flags = Notification.FLAG_auto_CANCEL;       //       manager.notify(NO,notification);     }     break;     case R.ID.btn_:{       //进度条通知       final NotificationCompat.Builder builderProgress = new NotificationCompat.Builder(this);       builderProgress.setSmallicon(R.drawable.ic_launcher).setTicker("进度条通知");       builderProgress.setProgress(,progress,false);       final Notification notification = builderProgress.build();       //发送一个通知       manager.notify(NO,notification);       //创建一个计时器       Timer timer = new Timer();       timer.schedule(new TimerTask(){         @OverrIDe         public voID run() {           Log.i("progress",progress+"");           while(progress <= ){             progress ++;             try {               Thread.sleep();             } catch (InterruptedException e) {               // Todo auto-generated catch block               e.printstacktrace();             }             //更新进度条             builderProgress.setProgress(,false);             //再次通知             manager.notify(NO,builderProgress.build());           }           //计时器退出           this.cancel();           //进度条退出           manager.cancel(NO);           return;//结束方法         }       },);     }     break;     default:       break;     }   } }

5、运行:我的虚拟机版本是4.0的(API19),按住通知左(右)滑动就可以让通知小时了。

效果如下:


总结

以上是内存溢出为你收集整理的Android中通过Notification&NotificationManager实现消息通知全部内容,希望文章能够帮你解决Android中通过Notification&NotificationManager实现消息通知所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1142245.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-31
下一篇 2022-05-31

发表评论

登录后才能评论

评论列表(0条)

保存