8

我正在使用它来实现一个安全功能,如果我的应用程序在从其他应用程序返回后重新获得焦点,则会显示锁定屏幕。

现在,问题是安全功能有时会显示两次。经过一番挖掘后,我注意到来自 ActivityManager.getRunningTasks(1) 的 topActivity 有时仍然是您刚刚返回的活动。

就我而言,令人讨厌的挥之不去的应用程序是 com.android.mms 和 com.google.android.apps.maps。

我在应用程序中也有一个调用工具,但它不是行为不端。

我对这种行为完全感到困惑。

4

1 回答 1

0

这对于 Android 来说确实是一个有问题的案例。尝试以下对我有用的方法:

为您的活动创建一个基类。在里面:

@Override
protected void onPause() {
    Utils.wentInBackground(this);
    super.onPause();
}

@Override
protected void onResume() {
    Utils.wentInForeground(this);
    super.onResume();
}

然后在静态实用程序类中有这个:

public static void wentInBackground(final Activity which) {
    inBackground = true;
    lastPaused = which.getClass().getSimpleName();

    final PowerManager powerManager = (PowerManager) which.getSystemService(POWER_SERVICE);
    final boolean isScreenOn = powerManager.isScreenOn();

    if (isApplicationSentToBackground(which) || !isScreenOn) {
        // Do your security lockdown here.
    }
}


public static boolean isApplicationSentToBackground(final Context context) {
    ActivityManager am = (ActivityManager) context.getSystemService(Context.ACTIVITY_SERVICE);
    List<RunningTaskInfo> tasks = am.getRunningTasks(1);

    if (!tasks.isEmpty()) {
        ComponentName topActivity = tasks.get(0).topActivity;
        if (!topActivity.getPackageName().equals(context.getPackageName())) {
            return true;
        }
    }

    return false;
}


public static void wentInForeground(final Activity which) {
    inBackground = false;
    final String activityName = which.getClass().getSimpleName();

    if (lastPaused.equals(activityName) || !isLoggedIn()) {

        if (isLoggedIn()) {
             // Do your security lockdown here again, if necessary.
        }

        // Show your security screen or whatever you need to.
    }
}

public static boolean isLoggedIn() {
    return loggedIn;
}
于 2014-02-17T13:04:18.780 回答