This reverts commit 6b6d8c0d6d
.
Reason for revert: Should use shouldFinishWhenBackgrounded() to
control the behavior during onStop()
Bug: 197717071
Change-Id: I6aeacd5fb0d4400911a2e3d1567db660a0f1798a
142 lines
4.4 KiB
Java
142 lines
4.4 KiB
Java
/*
|
|
* Copyright (C) 2018 The Android Open Source Project
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
package com.android.settings.biometrics;
|
|
|
|
import android.annotation.Nullable;
|
|
import android.content.Intent;
|
|
import android.os.UserHandle;
|
|
import android.view.View;
|
|
|
|
import com.android.settings.R;
|
|
import com.android.settings.password.ChooseLockSettingsHelper;
|
|
|
|
import com.google.android.setupcompat.util.WizardManagerHelper;
|
|
|
|
/**
|
|
* Abstract base activity which handles the actual enrolling for biometrics.
|
|
*/
|
|
public abstract class BiometricsEnrollEnrolling extends BiometricEnrollBase
|
|
implements BiometricEnrollSidecar.Listener {
|
|
|
|
private static final String TAG_SIDECAR = "sidecar";
|
|
|
|
@Nullable
|
|
protected BiometricEnrollSidecar mSidecar;
|
|
|
|
/**
|
|
* @return the intent for the finish activity
|
|
*/
|
|
protected abstract Intent getFinishIntent();
|
|
|
|
/**
|
|
* @return an instance of the biometric enroll sidecar
|
|
*/
|
|
protected abstract BiometricEnrollSidecar getSidecar();
|
|
|
|
/**
|
|
* @return true if enrollment should start automatically.
|
|
*/
|
|
protected abstract boolean shouldStartAutomatically();
|
|
|
|
@Override
|
|
protected void onStart() {
|
|
super.onStart();
|
|
if (shouldStartAutomatically()) {
|
|
startEnrollment();
|
|
}
|
|
}
|
|
|
|
@Override
|
|
protected void onStop() {
|
|
super.onStop();
|
|
|
|
if (mSidecar != null) {
|
|
mSidecar.setListener(null);
|
|
}
|
|
|
|
if (!isChangingConfigurations()) {
|
|
if (mSidecar != null) {
|
|
mSidecar.cancelEnrollment();
|
|
getSupportFragmentManager()
|
|
.beginTransaction().remove(mSidecar).commitAllowingStateLoss();
|
|
}
|
|
if (!WizardManagerHelper.isAnySetupWizard(getIntent())
|
|
&& !BiometricUtils.isAnyMultiBiometricFlow(this)) {
|
|
setResult(RESULT_TIMEOUT);
|
|
}
|
|
finish();
|
|
}
|
|
}
|
|
|
|
@Override
|
|
protected boolean shouldFinishWhenBackgrounded() {
|
|
// Prevent super.onStop() from finishing, since we handle this in our onStop().
|
|
return false;
|
|
}
|
|
|
|
@Override
|
|
public void onBackPressed() {
|
|
cancelEnrollment();
|
|
super.onBackPressed();
|
|
}
|
|
|
|
protected void onSkipButtonClick(View view) {
|
|
cancelEnrollment();
|
|
setResult(RESULT_SKIP);
|
|
finish();
|
|
}
|
|
|
|
public void cancelEnrollment() {
|
|
if (mSidecar != null) {
|
|
mSidecar.setListener(null);
|
|
mSidecar.cancelEnrollment();
|
|
getSupportFragmentManager()
|
|
.beginTransaction().remove(mSidecar).commitAllowingStateLoss();
|
|
mSidecar = null;
|
|
}
|
|
}
|
|
|
|
public void startEnrollment() {
|
|
mSidecar = (BiometricEnrollSidecar) getSupportFragmentManager()
|
|
.findFragmentByTag(TAG_SIDECAR);
|
|
if (mSidecar == null) {
|
|
mSidecar = getSidecar();
|
|
getSupportFragmentManager().beginTransaction().add(mSidecar, TAG_SIDECAR)
|
|
.commitAllowingStateLoss();
|
|
}
|
|
mSidecar.setListener(this);
|
|
}
|
|
|
|
protected void launchFinish(byte[] token) {
|
|
Intent intent = getFinishIntent();
|
|
intent.addFlags(Intent.FLAG_ACTIVITY_FORWARD_RESULT
|
|
| Intent.FLAG_ACTIVITY_CLEAR_TOP
|
|
| Intent.FLAG_ACTIVITY_SINGLE_TOP);
|
|
intent.putExtra(ChooseLockSettingsHelper.EXTRA_KEY_CHALLENGE_TOKEN, token);
|
|
intent.putExtra(BiometricEnrollBase.EXTRA_KEY_SENSOR_ID, mSensorId);
|
|
intent.putExtra(BiometricEnrollBase.EXTRA_KEY_CHALLENGE, mChallenge);
|
|
intent.putExtra(EXTRA_FROM_SETTINGS_SUMMARY, mFromSettingsSummary);
|
|
if (mUserId != UserHandle.USER_NULL) {
|
|
intent.putExtra(Intent.EXTRA_USER_ID, mUserId);
|
|
}
|
|
startActivity(intent);
|
|
overridePendingTransition(R.anim.sud_slide_next_in, R.anim.sud_slide_next_out);
|
|
finish();
|
|
}
|
|
|
|
}
|