少年辛苦终身事,莫向光阴惰寸功。这篇文章主要讲述android 自定义带按钮的Notification及点击事件和伸缩通知栏相关的知识,希望能为你提供帮助。
【android 自定义带按钮的Notification及点击事件和伸缩通知栏】1、自定义一个带按钮的Notification布局:layout_notification;
2、创建Notification:
RemoteViews views = new RemoteViews(getPackageName(),R.layout.layout_nitification);
//自定义的布局视图
//按钮点击事件:
PendingIntent homeIntent = PengdingIntent.getBroadcast(this,1,new Intent("action"),PengdingIntent.FLAG_UPDATE_CURRENT);
views.setOnClickPendingIntent(R.id.btn,homeIntent);
//点击的id,点击事件
//创建通知:
NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(getApplicationContext);
mBuilder.setContent(views)//设置布局
.setOngoing(true)//设置是否常驻,true为常驻
.setSmallIcon(R.mipmap.ic_laucher)//设置小图标
.setTicker("通知来了")//设置提示
.setPriority(Notification.PRIORITY_MAX)//设置优先级
.setWhen(System.currentTimeMillis())//设置展示时间
.setContentIntent(PendingIntent.getBroadcast(this,2,new Intent("action.view"),PengingIntent.FLAG_UPDATE_CURRENT);
//设置视图点击事件
NotificationManager mNotificationManager = (NotificationManager)getSystemService(NOTIFICATION_SERVICE);
mNotificationManager.notify(100,mBuilder.build())//显示通知: 当前notificationid,当前notification
3、创建NotificationBroadcast接收通知:
public class NotificationBroadcast extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
String action = intent.getAction(); //动作
collapseStatusBar(context); //收起通知栏
Intent i = new Intent(context,MainActivity.class);
i.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); //必须添加,避免重复打开
if (action.equals("com.xczl.smart.notification.home")){
i.putExtra("flag","home"); //传值
context.startActivity(i);
}
}
public void collapseStatusBar(Context context) {
try {
Object statusBarManager = context.getSystemService("statusbar");
Method collapse;
if (Build.VERSION.SDK_INT < = 16) {
collapse = statusBarManager.getClass().getMethod("collapse");
} else {
collapse = statusBarManager.getClass().getMethod("collapsePanels");
}
collapse.invoke(statusBarManager);
} catch (Exception localException) {
localException.printStackTrace();
}
}
4、MainActivity接收消息:
覆写 onNewIntent():
@Override
protected void onNewIntent(Intent intent) {
String extra = intent.getStringExtra("flag");
if (!TextUtils.isEmpty(extra)){
if (extra.equals("home")){
//接收到值的具体操作
}
}
}
5、配置清单:
MainActivity:设置LanchMode为singleTask
注册Broadcast:
< receiver
android:name="com.xczl.smart.broadcast.NotificationBroadcast"
android:enabled="true">
< intent-filter>
< action android:name="action"/>
< action android:name="action.view"/>
< /intent-filter>
< /receiver>
配置通知栏伸缩权限:
< uses-permission android:name="android.permission.EXPAND_STATUS_BAR"/>
推荐阅读
- Android Stdio的问题
- idea部署项目到tomcat,tomcat webapps下没有项目
- Android APP漏洞挖掘
- Ionic 创建应用(Android)
- Debug签名包在Android7.0启动崩溃问题
- AppStore IPv6-only审核被拒原因分析及解决方案
- 解决Android studio 中的 Android Device Monitor 中 File Explorer 无法打开data目录的方法(转载 http://www.jianshu.com/p
- app为什么要有启动页(Splash screen)
- Android中颜色透明度对应16进制值