android常驻通知栏的实现
最近做⼀个项⽬,其中⼀个要加⼊的功能是常驻Notification栏,以前写的时候只能出现在“通知”这⼀组中,想把它放在“正在运⾏”组中却不知道怎么放,查了下官⽅⽂档,到了⽅法,在notification的flags字段中加⼀下 “FLAG_ONGOING_EVENT”就可以了。同时我也把Notification的使⽤⽅法给总结了⼀下。详见下⽂:
( 1 )、使⽤系统定义的Notification
以下是使⽤⽰例代码:
//创建⼀个NotificationManager的引⽤
String ns = Context.NOTIFICATION_SERVICE;
NotificationManager mNotificationManager = (NotificationManager)getSystemService(ns);
// 定义Notification的各种属性
int  icon = R.drawable.icon;  //通知图标
CharSequence tickerText =  "Hello" ;  //状态栏显⽰的通知⽂本提⽰
long  when = System.currentTimeMillis();  //通知产⽣的时间,会在通知信息⾥显⽰
//⽤上⾯的属性初始化 Nofification
Notification notification =  new  Notification(icon,tickerText,when);
/*
* 添加声⾳
* notification.defaults |=Notification.DEFAULT_SOUND;
* 或者使⽤以下⼏种⽅式
* notification.sound = Uri.parse("");
* notification.sound = Uri.withAppendedPath(Audio.Media.INTERNAL_CONTENT_URI, "6");
* 如果想要让声⾳持续重复直到⽤户对通知做出反应,则可以在notification的flags字段增加"FLAG_INSISTENT"
* 如果notification的defaults字段包括了"DEFAULT_SOUND"属性,则这个属性将覆盖sound字段中定义的声⾳
*/安卓intent用法
/*
* 添加振动
* notification.defaults |= Notification.DEFAULT_VIBRATE;
* 或者可以定义⾃⼰的振动模式:
* long[] vibrate = {0,100,200,300}; //0毫秒后开始振动,振动100毫秒后停⽌,再过200毫秒后再次振动300毫秒
* notification.vibrate = vibrate;
* long数组可以定义成想要的任何长度
* 如果notification的defaults字段包括了"DEFAULT_VIBRATE",则这个属性将覆盖vibrate字段中定义
的振动
*/
/*
* 添加LED灯提醒
* notification.defaults |= Notification.DEFAULT_LIGHTS;
* 或者可以⾃⼰的LED提醒模式:
* notification.ledARGB = 0xff00ff00;
* notification.ledOnMS = 300; //亮的时间
* notification.ledOffMS = 1000; //灭的时间
* notification.flags |= Notification.FLAG_SHOW_LIGHTS;
*/
/
*
* 更多的特征属性
* notification.flags |= FLAG_AUTO_CANCEL; //在通知栏上点击此通知后⾃动清除此通知
* notification.flags |= FLAG_INSISTENT; //重复发出声⾳,直到⽤户响应此通知
* notification.flags |= FLAG_ONGOING_EVENT; //将此通知放到通知栏的"Ongoing"即"正在运⾏"组中
* notification.flags |= FLAG_NO_CLEAR; //表明在点击了通知栏中的"清除通知"后,此通知不清除,
* //经常与FLAG_ONGOING_EVENT⼀起使⽤
* notification.number = 1; //number字段表⽰此通知代表的当前事件数量,它将覆盖在状态栏图标的顶部
* //如果要使⽤此字段,必须从1开始
* notification.iconLevel = ; //
*/
//设置通知的事件消息
Context context = getApplicationContext();  //上下⽂
CharSequence contentTitle =  "My Notification" ;  //通知栏标题
CharSequence contentText =  "Hello World!" ;  //通知栏内容
Intent notificationIntent =  new  Intent( this ,Main. class );  //点击该通知后要跳转的Activity
PendingIntent contentIntent = Activity( this , 0 ,notificationIntent, 0 );
notification.setLatestEventInfo(context, contentTitle, contentText, contentIntent);
//把Notification传递给 NotificationManager
如果想要更新⼀个通知,只需要在设置好notification之后,再次调⽤ setLatestEventInfo(),然后重新发送⼀次通知即可,即再次调⽤notify()。
( 2 )、使⽤⾃定义的 Notification
要创建⼀个⾃定义的Notification,可以使⽤RemoteViews。要定义⾃⼰的扩展消息,⾸先要初始化⼀个RemoteViews对象,然后将它传递给Notification的contentView字段,再把PendingIntent传递给 contentIntent字段。以下⽰例代码是完整步骤:
//1、创建⼀个⾃定义的消息布局 l
<?xml version= "1.0"  encoding= "utf-8" ?>
<LinearLayout xmlns:android= ""
android:layout_width= "fill_parent"  android:layout_height= "fill_parent" >
<ImageView android:id= "@+id/image"  android:layout_width= "wrap_content"
android:layout_height= "fill_parent"  android:layout_marginRight= "10dp"  />
<TextView android:id= "@+id/text"  android:layout_width= "wrap_content"
android:layout_height= "fill_parent"  android:textColor= "#000"  />
</LinearLayout>
//2、在程序代码中使⽤RemoteViews的⽅法来定义image和text。然后把RemoteViews对象传到contentView字段
RemoteViews contentView =  new  RemoteViews(getPackageName(),R.layout.view);
contentView.setImageViewResource(R.id.image,R.drawable.icon);
contentView.setTextViewText(,”Hello, this  message is in a custom expanded view”);
//3、为Notification的contentIntent字段定义⼀个Intent(注意,使⽤⾃定义View不需要 setLatestEventInfo()⽅法)
Intent notificationIntent =  new  Intent( this ,Main. class );
PendingIntent contentIntent = Activity( this , 0 ,notificationIntent, 0 );
//4、发送通知
// 以下是全部⽰例代码
//创建⼀个 NotificationManager的引⽤
String ns = Context.NOTIFICATION_SERVICE;
NotificationManager mNotificationManager = (NotificationManager)getSystemService(ns);
// 定义Notification的各种属性
int  icon = R.drawable.icon;  //通知图标
CharSequence tickerText =  "Hello" ;  //状态栏显⽰的通知⽂本提⽰
long  when = System.currentTimeMillis();  //通知产⽣的时间,会在通知信息⾥显⽰
//⽤上⾯的属性初始化 Nofification
Notification notification =  new  Notification(icon,tickerText,when);
RemoteViews contentView =  new  RemoteViews(getPackageName(),R.layout.view);
contentView.setImageViewResource(R.id.image, R.drawable.iconempty);
contentView.setTextViewText(,  "Hello,this is JC" );
Intent notificationIntent =  new  Intent( this ,Main. class );
PendingIntent contentIntent = Activity( this , 0 ,notificationIntent, 0 );
//把Notification传递给NotificationManager

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。