Notification可以让我们在获得消息的时候,在状态栏,锁屏界面来显示信息。
Notification有三种,普通样式,折叠样式,悬挂样式。
1.普通Notification
NotificationManager notificationManager = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);
Notification.Builder builder = new Notification.Builder(context);
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.baidu.com"));
//PendingIntent控制跳转
PendingIntent pendingIntent = PendingIntent.getActivity(context,0,intent,0);
builder.setContentIntent(pendingIntent);
builder.setSmallIcon(R.mipmap.ic_launcher);
builder.setLargeIcon(BitmapFactory.decodeResource(getResources(),R.mipmap.ic_launcher_round));
builder.setContentTitle("新消息");//标题
notificationManager.notify("notification",1,builder.build());
关于PendingIntent :
PendingIntent 是一种特殊的 Intent ,字面意思可以解释为延迟的 Intent ,用于在某个事件结束后执行特定的 Action 。从上面带 Action 的通知也能验证这一点,当用户点击通知时,才会执行。
PendingIntent 是 Android 系统管理并持有的用于描述和获取原始数据的对象的标志(引用)。也就是说,即便创建该PendingIntent对象的进程被杀死了,这个PendingItent对象在其他进程中还是可用的。
日常使用中的短信、闹钟等都用到了 PendingIntent。
PendingIntent 主要可以通过以下三种方式获取:
//获取一个用于启动 Activity 的 PendingIntent 对象
public static PendingIntent getActivity(Context context, int requestCode, Intent intent, int flags);
//获取一个用于启动 Service 的 PendingIntent 对象
public static PendingIntent getService(Context context, int requestCode, Intent intent, int flags);
//获取一个用于向 BroadcastReceiver 广播的 PendingIntent 对象
public static PendingIntent getBroadcast(Context context, int requestCode, Intent intent, int flags)
PendingIntent 具有以下几种 flag:
FLAG_CANCEL_CURRENT:如果当前系统中已经存在一个相同的 PendingIntent 对象,那么就将先将已有的 PendingIntent 取消,然后重新生成一个 PendingIntent 对象。
FLAG_NO_CREATE:如果当前系统中不存在相同的 PendingIntent 对象,系统将不会创建该 PendingIntent 对象而是直接返回 null 。
FLAG_ONE_SHOT:该 PendingIntent 只作用一次。
FLAG_UPDATE_CURRENT:如果系统中已存在该 PendingIntent 对象,那么系统将保留该 PendingIntent 对象,但是会使用新的 Intent 来更新之前 PendingIntent 中的 Intent 对象数据,例如更新 Intent 中的 Extras 。
2.折叠样式
折叠式Notification是一种自定义Notification。
RemoteViews remoteViews = new RemoteViews(context.getPackageName(),R.layout.item);
builder.setCustomBigContentView(remoteViews);
有时会报android.app.RemoteServiceException错误,是由于布局引起的,RemoteViews里的控件是有限制的,最好有image和text。
3.悬挂式
悬挂式Notification是android5.0新增加的方式,当消息收到是可以在顶部提示显示通知,然后几秒后消失。
Intent topIntent = new Intent(context,MainActivity.class);
PendingIntent topPending = PendingIntent.getActivity(context,0,topIntent,PendingIntent.FLAG_CANCEL_CURRENT);
builder.setVisibility(Notification.VISIBILITY_PUBLIC);//任何情况下都显示通知
builder.setFullScreenIntent(topPending,true);