作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想使用 android oreo 通过单击或滑动来关闭通知 setAutoCancel(true)
不起作用。
这是我的代码:
public class AlarmService extends Service {
private NotificationManager mManager;
.
.
.
@SuppressLint("ClickableViewAccessibility")
@Override
public void onStart(Intent intent, int startId) {
super.onStart(intent, startId);
////////////////////////////////////////////////////////////////////////////////////////////////////////
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
String CHANNEL_ID = getString(R.string.app_name);
NotificationChannel channel = new NotificationChannel(CHANNEL_ID, getString(R.string.app_name), NotificationManager.IMPORTANCE_DEFAULT);
((NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE)).createNotificationChannel(channel);
Intent intent1 = new Intent(this.getApplicationContext(), MainActivity.class);
intent1.putExtra("code", 1);
intent1.addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP | Intent.FLAG_ACTIVITY_CLEAR_TOP);
PendingIntent pendingNotificationIntent = PendingIntent.getActivity(this.getApplicationContext(), 2, intent1, PendingIntent.FLAG_CANCEL_CURRENT);
Uri defaultSoundUri = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
Notification notification = new NotificationCompat.Builder(this, CHANNEL_ID)
.setContentTitle("title")
.setSmallIcon(R.drawable.logo)
.setContentIntent(pendingNotificationIntent)
.setNumber(1)
.setSound(defaultSoundUri)
.setContentText("more")
.setAutoCancel(true).build();
notification.flags |= Notification.FLAG_AUTO_CANCEL;
startForeground(2, notification);
}
谢谢。
最佳答案
当服务仍在前台时,自动取消不起作用。尝试从前台删除服务:
startForeground(2, notification);
stopForeground(false); //false - do not remove generated notification
关于java - setAutoCancel() 在 API 26 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50276620/
@Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState
我正在尝试显示当用户点击它时删除的通知。我正在使用 NotificationCompat 类来构建通知,并在构建器上调用 setAutoCancel(true)。这是一段代码: Notificatio
我想使用 android oreo 通过单击或滑动来关闭通知 setAutoCancel(true) 不起作用。 这是我的代码: public class AlarmService extends S
我正在使用此代码显示通知,但 setAutoCancel(true) 不起作用,因为当我按下通知以打开应用程序时,通知仍在通知栏上,我必须用手指手势手动删除它用于删除通知或使用通知栏中的全部清除按钮。
我是一名优秀的程序员,十分优秀!