作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在关注 http://blog.blundell-apps.com/notification-for-a-user-chosen-time/这篇文章和我制作了我的应用程序。所以我可以在特定的日期和时间设置闹钟。它工作正常,但一旦手机重新启动,它就会熄灭。所以我用谷歌搜索并了解了 BroadcastReceiver。
我的收件人代码是这样的
public class StartMyServiceAtBootReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
if ("android.intent.action.BOOT_COMPLETED".equals(intent.getAction())) {
Intent serviceIntent = new Intent(context, NotifyService.class);
context.startService(serviceIntent);
}
}
}
我的 list 中有这个设置
<service
android:name=".ScheduleService"
android:label="ScheduleService Manager" >
<action android:name="com.example.myapp.ScheduleService" />
</service>
<service
android:name=".NotifyService"
android:label="NotifyService Manager" >
<action android:name="com.example.myapp.NotifyService" />
</service>
<receiver
android:name="com.example.myapp.StartMyServiceAtBootReceiver"
android:enabled="true"
android:exported="true"
android:label="StartMyServiceAtBootReceiver">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>
我也有这个权限
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
我的 BroadcastReceiver 在重启后启动。但通知从不显示。知道为什么吗?
谢谢
PS:对 android 来说非常非常新:)
最佳答案
您实际上必须在重启后设置闹钟。仅仅设置启动接收器是不够的。
您可以从 adb shell 中看到即将到来的警报,如下所示:
adb shell dumpsys alarm
关于android - 重启后报警设置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25517176/
我是一名优秀的程序员,十分优秀!