12

我想知道一个活动是否以编程方式被锁定在 android 5.0 及更高版本的应用程序锁定下。请帮助我!

谢谢!

4

1 回答 1

27

获取活动是否处于锁定任务模式的方法。
activityManager.isInLockTaskMode() API 在 API 级别 23 中已弃用。使用方法 activityManager.getLockTaskModeState() http://developer.android.com/reference/android/app/ActivityManager.html#getLockTaskModeState()

public boolean isAppInLockTaskMode() {
    ActivityManager activityManager;

    activityManager = (ActivityManager)
        this.getSystemService(Context.ACTIVITY_SERVICE);

    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
        // For SDK version 23 and above.
        return activityManager.getLockTaskModeState()
            != ActivityManager.LOCK_TASK_MODE_NONE; 
    }

    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
        // When SDK version >= 21. This API is deprecated in 23.
        return activityManager.isInLockTaskMode();
    }

    return false;
}

希望这对你有帮助!

于 2015-02-21T14:45:01.157 回答