Android 5.0 Headup形式的Notification消息通知

来源:互联网 发布:新疆行知实验学校学费 编辑:程序博客网 时间:2024/06/10 15:46

加上一个属性即可:

Builder.setFullScreenIntent(pendingIntent, false)

在 android 在5.0中加入个通知新样式 Heads-Up.google 介绍界面,需要翻墙
在 Android 5.0的使用的方法的代码:

 notification=new NotificationCompat.Builder(MainActivity.this)                         .setVisibility(Notification.VISIBILITY_PUBLIC)                         .setSmallIcon(R.drawable.ic_launcher)                         .setFullScreenIntent(pendingIntent, false)                        .setContentTitle("这是标题")                         .setContentText("这是内容")                        .addAction(R.drawable.ic_launcher, "菜单1", peddingIntent1)                         .build();                notificationManager.notify(1, notification);

其中 Builder.setFullScreenIntent(pendingIntent, false) 是关键;
setUsesChronometer (boolean ) 设置这个为 true 以后 heads-up会将 action 也显示出来.

阅读全文
0 0