NotificationListenerService停止并且无法重新启动而无法重新启动

时间:2013-11-25 16:38:04

标签: android android-notifications android-framework

使用android 4.4我发现有些用户正在使用我已实现的notificationListenerService将停止工作。我其实也是这样看过的。

我从未设法在发生任何日志时捕获任何日志,但即使进入通知访问部分并关闭并重新开启通知访问也无济于事。

是否有可能导致这种情况发生的事情。我不确定我的应用程序是否崩溃并造成这种情况,但即使这样,重启监听器的唯一方法就是重启手机。还有另一种方法可以启动我的应用程序从侦听器服务接收通知吗?

我还会收到有关用户在更新应用版本时遇到此问题的报告。

我已经尝试将日志放入onCreate / onDestroy方法以查看停止时是否记录了任何内容,但是调用了onUnbind,onDestroy,但是没有输入任何这些方法,所以我猜他们没有被调用一旦它停止了。

修改 在发生这种情况之后我捕获了一个错误报告,并且日志的有趣部分看起来是:

12-30 15:33:58.731 16194 16194 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.sendOrderedBroadcast:1192 android.app.ContextImpl.sendOrderedBroadcast:1183 android.content.ContextWrapper.sendOrderedBroadcast:390 com.android.settings.applications.ProcessStatsDetail.checkForceStop:314 com.android.settings.applications.ProcessStatsDetail.onResume:108 
12-30 15:33:58.741   780   780 V NotificationService: disabling notification listener   for user 0: ComponentInfo{com.example.android.navigationdrawerexample/com.example.android.navigationdrawerexample.NotificationListener}
12-30 15:33:58.741   780   780 V NotificationService: disabling notification listener for user 0: ComponentInfo{lovetere.flashme/lovetere.flashme.accessibilityservice.ServicePostKitKat}
12-30 15:33:58.741   780   780 V NotificationService: enabling notification listener for user 0: ComponentInfo{com.example.android.navigationdrawerexample/com.example.android.navigationdrawerexample.NotificationListener}
12-30 15:33:58.741   780   780 V NotificationService: enabling notification listener for user 0: ComponentInfo{lovetere.flashme/lovetere.flashme.accessibilityservice.ServicePostKitKat}
12-30 15:33:58.751  1171  1171 D MyApp:NotificationListener: [NotificationListener] onDestroy

所以看起来有一个警告,然后停止服务并重新启动它(它发生在我的应用程序和我安装的其他应用程序使用通知访问查看正在停止的两个)

真的不知道我能做些什么来阻止这种停止

1 个答案:

答案 0 :(得分:1)

这种方式可以重启,但需要大约10秒!

private void toggleNotificationListenerService() {
        PackageManager pm = getPackageManager();
        pm.setComponentEnabledSetting(new ComponentName(this, com.xinghui.notificationlistenerservicedemo.NotificationListenerServiceImpl.class),
                PackageManager.COMPONENT_ENABLED_STATE_DISABLED, PackageManager.DONT_KILL_APP);

        pm.setComponentEnabledSetting(new ComponentName(this, com.xinghui.notificationlistenerservicedemo.NotificationListenerServiceImpl.class),
                PackageManager.COMPONENT_ENABLED_STATE_ENABLED, PackageManager.DONT_KILL_APP);

    }

作者:Hugo

链接:https://www.zhihu.com/question/33540416/answer/113706620