android通知栏点击关闭,Android点击通知栏 ,移除通知

通过点击系统通知栏移除 通知只需要一个方法

Notification notification = new Notification();

notification.setAutoCancel(true);

下面是整个系统弹窗的方法已做了6.0设配

/**

* 头部系统消息提示

* 状态栏提示消息

*/

private void setNotificationDemoForAndroidO(int progress, String content, Context context) {

//ID

String id = “testNotification”;

//名称

String name = “notification”;

NotificationManager notificationManager = (NotificationManager) context.getSystemService

(NOTIFICATION_SERVICE);

Notification.Builder mBuilder = new Notification.Builder(context);

RemoteViews remoteViews = new RemoteViews(context.getPackageName(), R.layout.layout_notification);

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {

NotificationChannel channel = new NotificationChannel(id, name, NotificationManager

.IMPORTANCE_DEFAULT);//FLAG_AUTO_CANCEL

mBuilder.setChannelId(id);

notificationManager.createNotificationChannel(channel);

mBuilder.setSmallIcon(R.drawable.logo);

// if (CGlobalData.ifOpenTest != true) {

// Intent intent = new Intent(context, SystemMessagesActivity.class);

// PendingIntent pendingIntent = PendingIntent.getActivity(context, 0, intent, 0);

// mBuilder.setContentIntent(pendingIntent);

Intent intent= new Intent();

PendingIntent pendingIntent = PendingIntent.getBroadcast(context, 0, intent, 0);

mBuilder.setAutoCancel(true);//点击通知栏移除通知

mBuilder.setContentIntent(pendingIntent);

// EventBus.getDefault().post(new SystemMessageClose(“finish”));//关闭

// }

mBuilder.setContent(remoteViews);

if (progress == 1) {

mBuilder.setDefaults(Notification.DEFAULT_SOUND);

}

remoteViews.setImageViewResource(R.id.iv_notification_image, R.drawable.logo);

remoteViews.setTextViewText(R.id.tv_notification_title, “”);

remoteViews.setTextViewText(R.id.tv_notification_content, content);

remoteViews.setProgressBar(R.id.pBar, 10, progress, false);

remoteViews.setTextViewText(R.id.proNum, progress + “/10”);

} else {

mBuilder.setSmallIcon(R.drawable.logo);

// if (CGlobalData.ifOpenTest != true) {

// EventBus.getDefault().post(new SystemMessageClose(“finish”));//关闭

// Intent intent = new Intent(context, SystemMessagesActivity.class);

// PendingIntent pendingIntent = PendingIntent.getActivity(context, 0, intent, 0);

// mBuilder.setContentIntent(pendingIntent);

Intent intent= new Intent();

PendingIntent pendingIntent = PendingIntent.getBroadcast(context, 0, intent, 0);

mBuilder.setAutoCancel(true);//点击通知栏移除通知

mBuilder.setContentIntent(pendingIntent);

mBuilder.setAutoCancel(true);//点击通知栏移除通知

// }

// SystemMessagesCallBack.doCallBackMethod();

// EventBus.getDefault().post(new BaseEvent(“SystemMessages”));

mBuilder.setContent(remoteViews);

if (progress == 1) {

mBuilder.setDefaults(Notification.DEFAULT_SOUND);

}

remoteViews.setImageViewResource(R.id.iv_notification_image, R.drawable.logo);

remoteViews.setTextViewText(R.id.tv_notification_title, “”);

remoteViews.setTextViewText(R.id.tv_notification_content, content);

remoteViews.setProgressBar(R.id.pBar, 10, progress, false);

remoteViews.setTextViewText(R.id.proNum, progress + “/10”);

}

// notificationManager.notify(10, mBuilder.build());

notificationManager.notify(1, mBuilder.build());

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值