我试图使我的数字时钟小部件的UpdateService在关闭屏幕以节省电池时停止,然后在激活屏幕时重新打开.我目前在appwidgetprovider的onReceive()中拥有它,但我也在broadcastRecIEver中进行了尝试.
我当前的代码是:
public static boolean wasScreenOn = true;public voID onReceive(Context context, Intent intent) {super.onReceive(context, intent);if (intent.getAction().equals(Intent.ACTION_SCREEN_OFF)) { Log.d("Screen switched on. ", "Starting DigiClock UpdateService."); context.startService(new Intent(UpdateService2by2.ACTION_UPDATE)); wasScreenOn = false;} else if (intent.getAction().equals(Intent.ACTION_SCREEN_ON)) { Log.d("Screen switched off. ", "StopPing DigiClock UpdateService."); context.stopService(new Intent(context, UpdateService2by2.class)); wasScreenOn = true;}
有人可以帮我从这里出去吗?我感到难过.
解决方法:
我相当确定您必须以ACTION_SCREEN_OFF / ON的代码注册接收器.我认为在清单中注册它们不会起作用.
总结以上是内存溢出为你收集整理的ACTION_SCREEN_OFF时如何停止服务全部内容,希望文章能够帮你解决ACTION_SCREEN_OFF时如何停止服务所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)