码迷,mamicode.com
首页 > 移动开发 > 详细

Android学习--使用通知

时间:2017-09-17 01:29:49      阅读:198      评论:0      收藏:0      [点我收藏+]

标签:一点   factory   resource   uil   客户   ima   systems   tac   ica   

 通知


   

     安卓和苹果一样,在App进去后台之后,当你需要给客户发送一些消息提醒之类的东西就得使用到通知这个东西,安卓中的通知显然是要比苹果的简单一点,苹果的在通知这方面主要展示在远程推送和本地通知上面,这里我们就简单的说说安卓的本地的通知的以及基本的展示,远程推送的东西在后面涉及到的时候再做总结,先看看下面这个的一个运行效果图,这是我在自己的安卓测试机上看到的效果,其他的就没什么说的,代码中需要注意的东西在代码注释记录的很清楚,就直接上代码:

 

技术分享

 

通知


 

 // 这里注意一下PendingIntent和Intent的区别,Intent更加趋向与立即执行的的动作
                // PendingIntent 更加倾向于在某个合适的时机去执行某个动作
                Intent intent = new Intent(this,NotificationActivity.class);
                PendingIntent pendingIntent = PendingIntent.getActivity(this,0,intent,0);

                //Log.d("TAG","dddddddddddddddddddd");
                NotificationManager manager = (NotificationManager)getSystemService(NOTIFICATION_SERVICE);

                // 这里为什么用NotificationCompat是为了适应API不稳定的问题,每个版本都会多多少少的修改通知内容,使用这个就不会存在这样的问题
                // NotificationCompat.Builder(Context context).build() 得到notification
                // 注意下面的两个设置 setAutoCancel  setContentIntent
                Notification notification = new NotificationCompat.Builder(this)
                                                .setContentTitle("这是一条通知")
                                                .setContentText("简单给你一条内容,让你看看是什么")
                                                .setAutoCancel(true)
                                                .setSmallIcon(R.mipmap.ic_launcher)
                                                .setLargeIcon(BitmapFactory.decodeResource(getResources(),R.mipmap.ic_launcher))
                                                .setContentIntent(pendingIntent)
                                                .build();

                //注意这里的1,这里的1是给这个通知指定的ID
                //可以通过这里设置的这个通知的ID在点击通知栏之后设置通知消失,如下面方式
                //这里设置通知取消
                //NotificationManager notificationManager = (NotificationManager)getSystemService(NOTIFICATION_SERVICE);
                //notificationManager.cancel(1);
                manager.notify(1,notification);

 

注意上面代码后者中我们是设置了点击通知的响应的,也就是intent,需要你特别留意的一点就是你还可以在具体的显示的活动页面在设置取消通知显示,代码如倒数第三第二行所示。

Android学习--使用通知

标签:一点   factory   resource   uil   客户   ima   systems   tac   ica   

原文地址:http://www.cnblogs.com/taoxu/p/7423315.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!