notification是显示在手机状态栏的通知,notification通知是具有全局性的通知,一般通过notificationmanager来进行管理.
一般运用notification的步骤如下:
- 1.调用getsysytemservice(notification_service)来获取系统的notificationmanager,进行notification的发送和回收
- 2.通过构造器建立一个notification
- 3.为notification set各种属性,然后builder()建立
- 4.通过notificationmanager发送通知
下面通过一个实例来演示上面的用法,先看一张效果图
一.获取系统的notificationmanager
1
2
3
4
5
6
7
8
9
|
private notificationmanager nm;
@override
protected void oncreate(bundle savedinstancestate) {
super .oncreate(savedinstancestate);
setcontentview(r.layout.activity_main);
//获取系统的通知管理
nm = (notificationmanager) getsystemservice(notification_service);
}
|
二.为主布局的两个按钮添加监听事件,然后分别设置启动通知,并设置各种属性和取消通知
各种属性代码中介绍的很详细,具体可以参考api
启动通知
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
public void send(view view){
//用于打开通知启动另一个activity
intent intent = new intent(mainactivity. this ,otheractivity. class );
//用于延迟启动
pendingintent pi = pendingintent.getactivity(mainactivity. this , 0 , intent, 0 );
//设置通知
notification notify = new notification.builder( this )
//设置打开该通知,通知自动消失
.setautocancel( true )
//设置显示在状态栏的通知提示消息
.setticker( "新消息" )
//设置通知栏图标
.setsmallicon(r.mipmap.ic_launcher)
//设置通知内容的标题
.setcontenttitle( "一条新通知" )
//设置通知内容
.setcontenttext( "恭喜你通知栏测试成功" )
//设置使用系统默认的声音,默认的led灯
.setdefaults(notification.default_sound | notification.default_lights)
//all的话则是全部使用默认,声音,震动,闪光灯,需要添加相应权限
// .setdefaults(all)
//或者自定义声音
//setsound(uri.parse())
//设置要启动的程序
.setcontentintent(pi)
//最后用build来建立通知
.build();
//发送当前通知,通过notificationmanager来管理
nm.notify( 1 ,notify);
}
|
这里用的otheractivity是通过通知启动的另一个activity,为了启动需要在清单文件中加入此activity,并且因为用到了闪光灯和振动器,所以也需要添加相应的权限
1
2
3
|
<activity android:name= ".otheractivity" > </activity>
<uses-permission android:name= "android.permission.flashlight" />
<uses-permission android:name= "android.permission.vibrate" />
|
取消通知
1
2
3
4
|
//取消通知
public void closed(view view){
nm.cancel( 1 );
}
|
用起来相当很方便.最后附上主界面布局
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<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:paddingleft= "@dimen/activity_horizontal_margin"
android:orientation= "horizontal"
android:paddingright= "@dimen/activity_horizontal_margin"
android:paddingtop= "@dimen/activity_vertical_margin"
android:paddingbottom= "@dimen/activity_vertical_margin" tools:context= ".mainactivity" >
<button
android:layout_width= "wrap_content"
android:layout_height= "wrap_content"
android:text= "开启通知"
android:onclick= "send"
android:id= "@+id/btnstartnotification"
/>
<button
android:layout_width= "wrap_content"
android:layout_height= "wrap_content"
android:text= "关闭通知"
android:onclick= "closed"
android:id= "@+id/btnstopnotification"
/>
</linearlayout>
|
以上就是关于android notification通知的详细内容,希望对大家的学习有所帮助。