0
如何檢查通知輔助功能服務是否啓用或不由android用戶?如何檢查通知輔助功能服務在Android中是否啓用?
Intent intent = new Intent("android.settings.ACTION_NOTIFICATION_LISTENER_SETTINGS");
startActivity(intent);`
我試過這段代碼,但這不起作用。
如何檢查通知輔助功能服務是否啓用或不由android用戶?如何檢查通知輔助功能服務在Android中是否啓用?
Intent intent = new Intent("android.settings.ACTION_NOTIFICATION_LISTENER_SETTINGS");
startActivity(intent);`
我試過這段代碼,但這不起作用。
你可以試試下面的代碼來檢查的天氣裏服務正在運行或不:
public boolean isMyServiceRunning(Activity activity) {
ActivityManager manager = (ActivityManager) activity
.getSystemService(Context.ACTIVITY_SERVICE);
for (RunningServiceInfo service : manager
.getRunningServices(Integer.MAX_VALUE)) {
if (NotificationService.class.getName().equals(
service.service.getClassName())) {
return true;
}
}
return false;
}
如果服務正在運行,目前否則其返回false時將返回true。