思路:通知目前有三种 普通通知 折叠式通知 悬挂式通知
我现在想让app弹出悬挂式通知 ,醒目些,通知自动消失或手动划除后,下滑状态栏我还想看到通知;
只用普通的通知,只能在状态栏提示,提示不够明显;只用悬挂式的,提示够明显,但是自动消失或手动划除后,在状态就消失了,不方便再次查看;
最后我就一条自定义消息,我同时弹出一个普通通知和一个悬挂式通知,定义5秒后悬挂式通知消失,悬挂式通知消失后还可下滑查看通知。
下面是简单代码 仅供参考:
悬挂式通知是android5.0以后出来的,在5.0以下手机不支持。。。
Notification管理
NotificationManager nm= (NotificationManager)context.getSystemService(Context.NOTIFICATION_SERVICE)
final Notification.Builder builder = new Notification.Builder(context);
Intent intent = new Intent(context, PublishedAboutActivity.class);
PendingIntent pendingIntent = PendingIntent.getActivity(context, 0, intent, 0);
builder.setContentIntent(pendingIntent);//普通消息
builder.setWhen(System.currentTimeMillis());
builder.setSmallIcon(R.mipmap.ic_shop_keji);
builder.setLargeIcon(BitmapFactory.decodeResource(context.getResources(), R.mipmap.ic_shop_keji));
builder.setAutoCancel(true);
builder.setDefaults(NotificationCompat.DEFAULT_ALL);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
builder.setVisibility(Notification.VISIBILITY_PUBLIC);
}
builder.setContentTitle("自定义消息标题");
builder.setContentText("自定义消息内容");
nm.notify(notifyId, builder.build());//普通消息提示 显示在状态栏
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {//SDK版本大于等于21才有悬挂式通知栏
Intent xintent = new Intent(context, PublishedAboutActivity.class);
xintent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
PendingIntent hangIntent = PendingIntent.getActivity(context, 0, xintent,
PendingIntent.FLAG_CANCEL_CURRENT);
builder.setFullScreenIntent(hangIntent, true);//悬挂式通知 悬挂在手机屏上方
notifyTag = notifyId + "jpush";//由于同一条消息 id 一样 ,有针对悬挂式通知打了一个tag;
nm.notify(notifyTag, notifyId, builder.build());
new Thread(new Runnable() {
@Override
public void run() {
try {
Thread.sleep(5000);//五秒后悬挂式通知消失
nm.cancel(notifyTag, notifyId);//按tag id 来清除消息
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}).start();
}