作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我发现的其他 Stackoverflow 代码都不起作用。要么是Java,要么我太笨了,无法让它工作。
如何每天在同一时间触发通知?如此基本的东西,我找不到 Kotlin 的任何东西。
最佳答案
使用此代码安排在每天 22:00(或 HOUR_TO_SHOW_PUSH
中的任何其他时间)显示通知:
private val alarmManager = context.getSystemService(ALARM_SERVICE) as AlarmManager
private val alarmPendingIntent by lazy {
val intent = Intent(context, AlarmReceiver::class.java)
PendingIntent.getBroadcast(context, 0, intent, 0)
}
private const val HOUR_TO_SHOW_PUSH = 22
fun schedulePushNotifications() {
val calendar = GregorianCalendar.getInstance().apply {
if (get(Calendar.HOUR_OF_DAY) >= HOUR_TO_SHOW_PUSH) {
add(Calendar.DAY_OF_MONTH, 1)
}
set(Calendar.HOUR_OF_DAY, HOUR_TO_SHOW_PUSH)
set(Calendar.MINUTE, 0)
set(Calendar.SECOND, 0)
set(Calendar.MILLISECOND, 0)
}
alarmManager.setRepeating(
AlarmManager.RTC_WAKEUP,
calendar.timeInMillis,
AlarmManager.INTERVAL_DAY,
alarmPendingIntent
)
}
它将触发
BroadcastReceiver
调用
AlarmReceiver
,所以你也必须实现它:
class AlarmReceiver : BroadcastReceiver() {
override fun onReceive(context: Context, intent: Intent) {
showPushNotification() // implement showing notification in this function
}
}
不要忘记在你的 AndroidManifest.xml 中注册它:
<receiver android:name="com.your-package-name.AlarmReceiver" android:enabled="true"/>
另请注意,要安排这些通知,您必须调用
schedulePushNotifications()
,这意味着应用程序必须在每次重启后至少启动一次。如果您希望在重启后显示通知而不启动您的应用程序,请考虑实现
BootReceiver
这将在重新启动后立即触发:
class BootReceiver : BroadcastReceiver() {
override fun onReceive(context: Context, intent: Intent) {
if (intent.action == "android.intent.action.BOOT_COMPLETED") {
schedulePushNotifications()
}
}
}
不要忘记在 AndroidManifest.xml 中注册它:
<receiver android:name="com.your-package-name.BootReceiver" android:enabled="true">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED"/>
</intent-filter>
</receiver>
关于android - Kotlin 中的通知每天在同一时间重复,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65971302/
我是一名优秀的程序员,十分优秀!