gpt4 book ai didi

android - 在 Debug模式下运行时未启动通知监听器服务

转载 作者:行者123 更新时间:2023-11-29 02:33:31 28 4
gpt4 key购买 nike

我正在使用 NotificationListenerService 构建一个应用程序。但是当我在 Debug模式下运行应用程序时,服务始终没有启动。我将代码缩减为以下内容:

我的 Activity :

class MainActivity : AppCompatActivity() {

override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
val intent = Intent("android.settings.ACTION_NOTIFICATION_LISTENER_SETTINGS")
startActivity(intent)
}

override fun onResume() {
super.onResume()
val isServiceRunning = isMyServiceRunning(NLService::class.java)
Log.i("MainActivity", "service running: " + isServiceRunning)

}

private fun isMyServiceRunning(serviceClass: Class<*>): Boolean {
val manager = getSystemService(Context.ACTIVITY_SERVICE) as ActivityManager
for (service in manager.getRunningServices(Integer.MAX_VALUE)) {
if (serviceClass.name == service.service.className) {
return true
}
}
return false
}
}

服务:

class NLService : NotificationListenerService() {

private val TAG: String? = "NLService"

override fun onBind(intent: Intent): IBinder? {
Log.i(TAG, "onBind()")
return super.onBind(intent)
}

override fun onCreate() {
super.onCreate()
Log.i(TAG, "onCreate()")
}

override fun onDestroy() {
super.onDestroy()
}

override fun onNotificationPosted(sbn: StatusBarNotification?) {
Log.i(TAG, "onNotificationPosted() sbn: $sbn")
super.onNotificationPosted(sbn)
}
}

当然我在 list 中添加了这个:

<service
android:name=".NLService"
android:label="MyNLService"
android:permission="android.permission.BIND_NOTIFICATION_LISTENER_SERVICE">
<intent-filter>
<action android:name="android.service.notification.NotificationListenerService" />
</intent-filter>

</service>

在 Debug模式下启动应用程序时,我总是在 onResume 中得到日志输出 service running: false。正常启动时该值为真,无需调试。出了什么问题以及如何解决?

最佳答案

好吧,最后我没有一个完整的解决方案,而是一种接近工作解决方案的改进。

那么我的原始应用程序代码中实际上存在哪些技术问题?我是如何解决它们的?

  1. 我在NLService 类的onConnect() 方法中做了一些初始化。我将所有这些初始化移动到 onListenerConnected(),添加了一个 handler.postDelayed(runnable, 500);
  2. 我在 NLService 类中创建了一个类的对象(我们称它为 MyHandlerClass),并将对该服务的引用传递给它。这不是一个好的解决方案,因为 Android documentation says something about many methodsNotificationListenerService 中:

    The service should wait for the onListenerConnected() event before performing this operation.

所以在 MyHandlerClass 中我调用了一个 nlService.getActiveNotifications()。此调用可能在 Android 调用 NLServiceonListenerConnected 之前进行。所以我为 NLService 中的方法制作了包装器,例如:

fun getActiveNotifications(): Array<StatusBarNotification>?
{
return if (isConnected)
{
super.getActiveNotifications()
}
else
{
null
}
}

然后我在 onListenerConnected()onListenerDisconnected()

中切换了我的 bool 变量 isConnected

现在,在 Debug模式下运行应用程序时,服务仍然会崩溃。但是在正常模式下运行时,崩溃的数量可以通过所描述的改进来减少。

关于android - 在 Debug模式下运行时未启动通知监听器服务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48370088/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com