当前位置:   article > 正文

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

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());

}

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/575681
推荐阅读
相关标签
  

闽ICP备14008679号