Notification的学习,4.0前后的差别,和在设置声音的时候获取资源的uri方法

android 4.0 前后很多api都有了较大的差别,不多说现在学习下notification前后实现的差别,本文参考了

:http://my.oschina.net/ososchina/blog/353692;http://gundumw100.iteye.com/blog/1873318;

http://blog.csdn.net/wukunting/article/details/5661769

 先把没有注释的代码贴上,不明白的还可以看下面的带带注释的代码,希望对跟我一样的初学者有所帮助:

 代码:

 

public class MainActivity extends ActionBarActivity {private static final int NOTIFY_ID = 0; @Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_main);}public void tell(View v){//  **************android 4.0后*************************************String title="mynotice";//通知栏的标题String store="hahagaga";NotificationManager notificationManager = (NotificationManager)getSystemService(NOTIFICATION_SERVICE); //点击notification需要激活的activity,这里设置自己Intent intent = new Intent(this,MainActivity.class);  intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);   intent.putExtra("store", store);  PendingIntent contentIntent = PendingIntent.getActivity(this, 0,intent, PendingIntent.FLAG_UPDATE_CURRENT);//FLAG_ONE_SHOT  Notification notification = new Notification.Builder(getApplicationContext())           .setContentTitle(title)  .setContentText(store)  .setContentIntent(contentIntent)  .setSmallIcon(R.drawable.hahagaga)   .setAutoCancel(true) .setWhen(System.currentTimeMillis())  
//                             .setDefaults(Notification.DEFAULT_ALL)  //所有的设为系统默认,一般和短信通知一样.build();//led灯的显示notification.ledARGB = Color.RED;notification.ledOffMS = 0;notification.ledOnMS = 1;notification.flags = notification.flags | Notification.FLAG_SHOW_LIGHTS;notification.flags |= Notification.FLAG_AUTO_CANCEL;long[] vibrate = new long[] { 1000, 1000, 1000, 1000};notification.vibrate = vibrate;Uri uri = Uri.parse("android.resource://"+getPackageName()+"/"+R.raw.zp1);notification.sound=uri;notificationManager.notify(NOTIFY_ID, notification); //第一个参数是标识通知的唯一码,上面自己定义的变量//  **************android 4.0前*************************************
//    	String title="mynotice";//通知栏的标题
//    	String store="hahagaga";
//    	 NotificationManager notificationManager = (NotificationManager)getSystemService(NOTIFICATION_SERVICE); 
//         Notification notification = new Notification();  
//         notification.flags |= Notification.FLAG_SHOW_LIGHTS;  
//         notification.flags |= Notification.FLAG_AUTO_CANCEL;  
//         notification.defaults = Notification.DEFAULT_ALL;  
//         notification.icon = R.drawable.hahagaga;  
//         notification.when = System.currentTimeMillis();  
//   
//         Intent intent = new Intent(this,MainActivity.class);  
//         intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);   
//         intent.putExtra("store", store);  
//         PendingIntent contentIntent = PendingIntent.getActivity(this, 0,intent, PendingIntent.FLAG_UPDATE_CURRENT);//FLAG_ONE_SHOT  
//          //Change the name of the notification here  
//         notification.setLatestEventInfo(this, title, store, contentIntent);  
//         notificationManager.notify(NOTIFY_ID, notification);  }

  

注释:  

public class MainActivity extends ActionBarActivity {private static final int NOTIFY_ID = 0; @Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_main);}public void tell(View v){//  **************android 4.0后*************************************String title="mynotice";//通知栏的标题String store="hahagaga";NotificationManager notificationManager = (NotificationManager)getSystemService(NOTIFICATION_SERVICE); //intent是点击notification后激活的意图Intent intent = new Intent(this,MainActivity.class);  
//    	 注意:如果要以该Intent启动一个Activity,一定要设置 Intent.FLAG_ACTIVITY_NEW_TASK 标记。
//    	 Intent.FLAG_ACTIVITY_CLEAR_TOP :如果在当前Task中,有要启动的Activity,那么把该Acitivity之前的
//    	                 所有Activity都关掉,并把此Activity置前以避免创建Activity的实例
//    	 Intent.FLAG_ACTIVITY_NEW_TASK :系统会检查当前所有已创建的Task中是否有该要启动的Activity的Task,
//    	                若有,则在该Task上创建Activity,若没有则新建具有该Activity属性的Task,并在该新建的Task上创建
//    	         Activity。更多请参见 “ (转载)Android下Affinities和Task ”intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);   intent.putExtra("store", store);  //contentIntent是修饰intent的
//         Intent :意图,即告诉系统我要干什么,然后系统根据这个Intent做对应的事。如startActivity相当于发送消息,
//         			而Intent是消息的内容。
//         PendingIntent :包装Intent,Intent 是我们直接使用 startActivity , startService 或 sendBroadcast
//         启动某项工作的意图。而某些时候, 我们并不能直接调用startActivity , startServide 或 sendBroadcast ,
//         而是当程序或系统达到某一条件才发送Intent。如这里的Notification,当用户点击Notification之后,由系统发
//         出一条Activity 的 Intent 。因此如果我们不用某种方法来告诉系统的话,系统是不知道是使用 startActivity,
//         startService 还是 sendBroadcast 来启动Intent 的(当然还有其他的“描述”),因此这里便需要PendingIntent。PendingIntent contentIntent = PendingIntent.getActivity(this, 0,intent, PendingIntent.FLAG_UPDATE_CURRENT);//FLAG_ONE_SHOT  Notification notification = new Notification.Builder(getApplicationContext())           .setContentTitle(title)  .setContentText(store)  .setContentIntent(contentIntent)  .setSmallIcon(R.drawable.hahagaga)   .setAutoCancel(true) .setWhen(System.currentTimeMillis())  
//                             .setDefaults(Notification.DEFAULT_ALL)  //所有的设为系统默认,一般和短信通知一样,设置默认后面的设置就不起作用了.build();//设置默认   DEFAULT_LIGHTS  默认灯//DEFAULT_SOUND   默认声音//DEFAULT_VIBRATE  默认震动//DEFAULT_ALL 以上默认//led灯的显示notification.ledARGB = Color.RED;notification.ledOffMS = 0;notification.ledOnMS = 1;notification.flags = notification.flags | Notification.FLAG_SHOW_LIGHTS;
//         通常为了简便写成notification.flags |= Notification.FLAG_SHOW_LIGHTS;,这样可以为通知设置多个flagnotification.flags |= Notification.FLAG_AUTO_CANCEL;//通知来时候震动,vibrate是震动的方式,
//      long[] vibrate  :自定义震动模式 。数组中数字的含义依次是[静止时长,震动时长,静止时长,震动时长。。。]时长的单位是毫秒 long[] vibrate = new long[] { 1000, 1000, 1000, 1000};notification.vibrate = vibrate;//         设置声音
//         获取工程文件下的资源的uri方式和获取sd卡路径的方式//Uri.parse("/data/data/zp1.mp3");Uri uri = Uri.parse("android.resource://"+getPackageName()+"/"+R.raw.zp1);notification.sound=uri;//启动notificationnotificationManager.notify(NOTIFY_ID, notification); //第一个参数是标识通知的唯一码,上面自己定义的变量//  **************android 4.0前*************************************
//    	String title="mynotice";//通知栏的标题
//    	String store="hahagaga";
//    	 NotificationManager notificationManager = (NotificationManager)getSystemService(NOTIFICATION_SERVICE); 
//         Notification notification = new Notification();  
//         notification.flags |= Notification.FLAG_SHOW_LIGHTS;  
//         notification.flags |= Notification.FLAG_AUTO_CANCEL;  
//         notification.defaults = Notification.DEFAULT_ALL;  
//         notification.icon = R.drawable.hahagaga;  
//         notification.when = System.currentTimeMillis();  
//   
//         Intent intent = new Intent(this,MainActivity.class);  
//         intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);   
//         intent.putExtra("store", store);  
//         PendingIntent contentIntent = PendingIntent.getActivity(this, 0,intent, PendingIntent.FLAG_UPDATE_CURRENT);//FLAG_ONE_SHOT  
//          //Change the name of the notification here  
//         notification.setLatestEventInfo(this, title, store, contentIntent);  
//         notificationManager.notify(NOTIFY_ID, notification);  }}

  

转载于:https://www.cnblogs.com/bokeofzp/p/4744214.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/419647.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

标题 日期问题java蓝桥杯,日期类的使用(java)-蓝桥杯

蓝桥杯日期问题常考,java提供了日期类很方便;//日历类Calendar c Calendar.getInstance();  // 获取实例化对象Date date c.getTime();   // 日期类得到c的时间;SimpleDateFormat sdf new SimpleDateFormat("yyyy-mm-dd hh:mm:s…

前端学习(1598):ref转发

第一种方式 <!DOCTYPE html> <html lang"en"><head><meta charset"UTF-8"><meta name"viewport" content"widthdevice-width, initial-scale1.0"><title>Document</title><script src&…

PHP opencv Dlib,Face_Recognition

Face_Recognition使用Opencv和Dlib实现基于视频的人脸识别文件夹介绍1、Resources\pictures此文件夹下存放人脸保存结果2、Resources\video此文件夹下存放带标注视频保存结果3、Resources\faceS此文件夹下存放各个人物的图片&#xff0c;用于人脸库的建立4、Resources\featureD…

linux c截断文件

http://www.cnblogs.com/zhuxiongfeng/archive/2010/08/24/1807505.html转载于:https://www.cnblogs.com/jingzhishen/p/4745978.html

oracle dbra,资源供给:IO子系统之二

案例描述&#xff1a;某运营商的dbra备份系统&#xff0c;备份构建在vxvm和vxfs文件系统之上&#xff0c;串行更新的速度基本理想。由于无法达到更新目标&#xff0c;通过增加并行来增加IO写速度&#xff0c;结果并行度加大之后&#xff0c;iops快速下跌&#xff0c;io子系统无…

[Android]Android端ORM框架——RapidORM(v1.0)

以下内容为原创&#xff0c;欢迎转载&#xff0c;转载请注明 来自天天博客&#xff1a;http://www.cnblogs.com/tiantianbyconan/p/4748077.html Android上主流的ORM框架有很多&#xff0c;常用的有ORMLite、GreenDao等。 ORMLite&#xff1a; &#xff0d;优点&#xff1a;AP…

oracle代码实例,oracle存储过程代码实例

1、用来插入大量测试数据的存储过程CREATE OR REPLACE PROCEDURE INSERTAMOUNTTEST(ST_NUM IN NUMBER,ED_NUM IN NUMBER)ISBEGINdeclarei number;beginFOR i IN ST_NUM..ED_NUM LOOPINSERT INTO tb values(i,i,3,3,3,100,0);END LOOP;end;END;运行&…

Examining Open vSwitch Traffic Patterns

In this post, I want to provide some additional insight on how the use of Open vSwitch (OVS) affects—or doesn’t affect, in some cases—how a Linux host directs traffic through physical interfaces, OVS internal interfaces, and OVS bridges. This is somethi…

Docker 面临的安全隐患,我们该如何应对

【编者按】对比虚拟机&#xff0c;Docker 在体量等方面拥有显著的优势。然而&#xff0c;当 DevOps 享受 Docker 带来扩展性、资源利用率和弹性提升的同时&#xff0c;其所面临的安全隐患同样值得重视&#xff0c;近日 Chris Taschner 在 SEI 上撰文进行了总结。本文系 OneAPM …

oracle虑重语句,db基本语句(oracle)

一. SQL分类DDL&#xff1a;数据定义语言(Data Definition Language)DML&#xff1a;数据操纵语言(Data Manipulation Language)TCL&#xff1a;事务控制语言(Transaction Control Language)DQL&#xff1a;数据查询语言(Data Query Language)DCL&#xff1a;数据控制语言(Data…

Plist文件和字典转模型

模型与字典 1. 用模型取代字典的好处 使用字典的坏处 编译器没有自动提醒的功能,需要手敲key如果写错了编译器也不会报错2. 模型概念 概念 专门用来存放数据的对象特点 一般继承自NSObject在.h文件中声明一些用来存放数据的属性注释 //单行注释/ /多行注释/* /文档注释,调用属性…

oracle job 与存储过程,应用oracle job和存储过程

每月新增数据百万多条&#xff0c;需要定期处理2个主要数据表(test_ad,test_pd)&#xff0c;移动非当月数据到历史表中保存数据操作存储过程如下&#xff1a;MYPROC.prccreate or replace procedure MYPROC isTableName_AD char(13);TableName_PD char(13);tmp_str varchar2(10…

Oracle从小白到大牛的刷题之路(建议收藏学习)

目录 前言 数据表结构 数据库文件&#xff08;按照顺序导入&#xff09; 1基本SQL-SELECT 1.1基本SQL-SELECT语句笔记 1.2 基本SQL-SELECT语句练习 2过滤和排序数据 2.1过滤和排序数据笔记 2.2过滤和排序数据练习 3单行函数 3.1单行函数笔记 3.2单行函数练习 4多表…

oracle数据库快照打点,Oracle数据库快照的使用

Oracle数据库快照的使用正在看的ORACLE教程是:Oracle数据库快照的使用。oracle数据库的快照是一个表&#xff0c;它包含有对一个本地或远程数据库上一个或多个表或视图的查询的结果。正因为快照是一个主表的查询子集&#xff0c;使用快照可以加快数据的查询速度;在保持不同数据…

3.2 双向链表

1.简介 前面3.1的单链表在操作过程中有一个缺点&#xff0c;就是后面的节点无法直接找到前面的节点&#xff0c;这使很多操作都得从头到尾去搜寻节点&#xff0c;算法效率变得非常低&#xff0c;解决这个问题的方法就是重新定义链表的节点使每个节点有两个指针&#xff0c;一个…