如何检查 activity 是否在 android Lollipop 中被锁定(应用固定)

How to check if an activity is locked (app pinning) in android Lollipop

我想知道 activity 在 android 5.0 及更高版本中是否以编程方式锁定在应用固定下。请帮助我!

谢谢!

获取activity锁定任务模式的方法。
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;
}

希望对您有所帮助!