作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个在 I/O 任务期间弹出的通知,我想查看它以便用户知道详细信息在其他地方(状态栏)。在旧设备上,我的代码有效,但在新设备上,通知不会消失到状态栏,它变成了一个永久性的提醒。我希望在较新的设备上,通知更新(当前文件)会导致 peek 重置。任何人都知道一种方法可以确保通知是快速浏览,而不是提醒?
我的应用是全屏的,这就是为什么默认
优先查看的原因。
Util.createNotificationChannel(
applicationContext,
"copy",
"Copying...",
"Notifications for copy tasks.")
val builder = Util.createNotification(
applicationContext,
"copy",
applicationContext.getString(R.string.copyingImages),
applicationContext.getString(R.string.preparing))
val notifications = NotificationManagerCompat.from(applicationContext)
notifications.notify(builder.build())
...
(loop)
builder
.setProgress(images.size, index, false)
.setContentText(value.name)
.priority = NotificationCompat.PRIORITY_DEFAULT
notifications.notify(builder.build())
最佳答案
我相信Notification.Builder.setOnlyAlertOnce()
将得到您期望的结果。
关于android - 如何确保通知一目了然(而不是单挑),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54681138/
我用过 在 jSTL 中。现在我想用眼力。 我的用例是打印从 1 到 10 的数字,然后我如何快速迭代为 for loop在 Java 中 最佳答案 Sightly 不允许您通过设计将任何逻辑放入其中
我是一名优秀的程序员,十分优秀!