最近写了几篇基础控件?使用。今天介绍下Notification,蛮简单的东西,有些细节需要注意,对于测试不完全造成的错误,望大家指出。
交互
交互上来讲,Notification可以带上振动,闪烁,声音(未看见Notification前)和具体的UI(看见UI后),因为系统有自带的振动,闪烁,声音,以及UI的定制程度,大致可以将Notification分为3类,虽然网上普遍分为2类。当然在展开前,先讲讲几个重要的API,由于后期不推荐用属性的方式创建Notification,本文全部采用builder方式创建。
*public Builder setWhen(long when) *
设置显示通知的时间,不设置默认获取系统时间
public Builder setSmallIcon(@DrawableRes int icon)
设置小图标,需要注意下,就是在状态栏上的显示,为打开通知栏前,必须设置
public Builder setDefaults(int defaults)
设置上述铃声,振动,闪烁用|分隔,常量在Notification里
*public Builder setLargeIcon(Bitmap b) *
设置打开通知栏后的大图标
public Builder setContentInfo(CharSequence info)
设置内容区的内容信息
public Builder setContentText(CharSequence text)
设置内容区的内容
public Builder setContentTitle(CharSequence title)
设置内容区的标题
*public Builder setAutoCancel(boolean autoCancel) *
设置点击通知后是否自动清除
public Builder setContentIntent(PendingIntent intent)
设置一个延时操作(可以跳转Activity,打开Service,或者发送广播)
那么接下来不同分类下的实现
1.完全自定义
关键函数:
builder.setDefaults(
Notification.DEFAULT_LIGHTS |
Notification.DEFAULT_SOUND |
Notification.DEFAULT_VIBRATE);
2.部分自定义
由于闪烁其实可以设置灯的颜色RGB方式,但是需要查询手机支持,感觉实际应用不大,直接设置默认的
3.RemoteViews方式
布局文件
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+id/bigIcon"
android:layout_width="36dp"
android:layout_height="match_parent"
android:src="@drawable/notification_icon_big"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_marginLeft="15dp"
android:layout_toRightOf="@+id/bigIcon"
android:orientation="vertical">
<TextView
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_gravity="left|center_vertical"
android:layout_weight="1"
android:text="Title" />
<TextView
android:id="@+id/tvContent"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_gravity="center_vertical|left"
android:layout_weight="1"
android:text="content"/>
</LinearLayout>
</RelativeLayout>
需要注意的是必须设置builder.setSmallIcon(R.drawable.notification_icon_small),不然是看不到通知的,
RemoteViews设置方法或者属性的方法是跟普通的不一样的,采用了反射的方法
rv.setCharSequence(R.id.tvContent, "setText", "dynamic inflate");
rv.setImageViewResource(R.id.bigIcon, R.drawable.notification_icon_small);
具体源码就不展开讲了,大概原理是内部维护了一个ArrayList<Action>()对象,用于加事件,里面的Action是个抽象类,具体实现为ReflectionAction,在里面进行反射解析,具体调用参考RemoteViews方法解析
另外在service作为前台服务的时候是需要传递一个Notification的,附上demo实现