Use button styles instead of list style because of UX spec change. Bug: 29421687 Change-Id: Icf178c881c2325b6183de8667a5657b3d2088f72
182 lines
6.7 KiB
Java
182 lines
6.7 KiB
Java
/*
|
|
* Copyright (C) 2015 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.fingerprint;
|
|
|
|
import android.app.admin.DevicePolicyManager;
|
|
import android.content.ActivityNotFoundException;
|
|
import android.content.Intent;
|
|
import android.hardware.fingerprint.FingerprintManager;
|
|
import android.os.Bundle;
|
|
import android.os.UserHandle;
|
|
import android.os.UserManager;
|
|
import android.util.Log;
|
|
import android.view.View;
|
|
import android.widget.Button;
|
|
|
|
import com.android.internal.logging.MetricsProto.MetricsEvent;
|
|
import com.android.settings.ChooseLockGeneric;
|
|
import com.android.settings.ChooseLockSettingsHelper;
|
|
import com.android.settings.R;
|
|
import com.android.settingslib.HelpUtils;
|
|
import com.android.setupwizardlib.span.LinkSpan;
|
|
|
|
/**
|
|
* Onboarding activity for fingerprint enrollment.
|
|
*/
|
|
public class FingerprintEnrollIntroduction extends FingerprintEnrollBase
|
|
implements View.OnClickListener, LinkSpan.OnClickListener {
|
|
|
|
private static final String TAG = "FingerprintIntro";
|
|
|
|
protected static final int CHOOSE_LOCK_GENERIC_REQUEST = 1;
|
|
protected static final int FINGERPRINT_FIND_SENSOR_REQUEST = 2;
|
|
protected static final int LEARN_MORE_REQUEST = 3;
|
|
|
|
private UserManager mUserManager;
|
|
private boolean mHasPassword;
|
|
|
|
@Override
|
|
protected void onCreate(Bundle savedInstanceState) {
|
|
super.onCreate(savedInstanceState);
|
|
setContentView(R.layout.fingerprint_enroll_introduction);
|
|
setHeaderText(R.string.security_settings_fingerprint_enroll_introduction_title);
|
|
|
|
final Button cancelButton = (Button) findViewById(R.id.fingerprint_cancel_button);
|
|
cancelButton.setOnClickListener(this);
|
|
|
|
mUserManager = UserManager.get(this);
|
|
updatePasswordQuality();
|
|
}
|
|
|
|
private void updatePasswordQuality() {
|
|
final int passwordQuality = new ChooseLockSettingsHelper(this).utils()
|
|
.getActivePasswordQuality(mUserManager.getCredentialOwnerProfile(mUserId));
|
|
mHasPassword = passwordQuality != DevicePolicyManager.PASSWORD_QUALITY_UNSPECIFIED;
|
|
}
|
|
|
|
@Override
|
|
protected Button getNextButton() {
|
|
return (Button) findViewById(R.id.fingerprint_next_button);
|
|
}
|
|
|
|
@Override
|
|
protected void onNextButtonClick() {
|
|
if (!mHasPassword) {
|
|
// No fingerprints registered, launch into enrollment wizard.
|
|
launchChooseLock();
|
|
} else {
|
|
// Lock thingy is already set up, launch directly into find sensor step from wizard.
|
|
launchFindSensor(null);
|
|
}
|
|
}
|
|
|
|
private void launchChooseLock() {
|
|
Intent intent = getChooseLockIntent();
|
|
long challenge = getSystemService(FingerprintManager.class).preEnroll();
|
|
intent.putExtra(ChooseLockGeneric.ChooseLockGenericFragment.MINIMUM_QUALITY_KEY,
|
|
DevicePolicyManager.PASSWORD_QUALITY_SOMETHING);
|
|
intent.putExtra(ChooseLockGeneric.ChooseLockGenericFragment.HIDE_DISABLED_PREFS, true);
|
|
intent.putExtra(ChooseLockSettingsHelper.EXTRA_KEY_HAS_CHALLENGE, true);
|
|
intent.putExtra(ChooseLockSettingsHelper.EXTRA_KEY_CHALLENGE, challenge);
|
|
intent.putExtra(ChooseLockSettingsHelper.EXTRA_KEY_FOR_FINGERPRINT, true);
|
|
if (mUserId != UserHandle.USER_NULL) {
|
|
intent.putExtra(Intent.EXTRA_USER_ID, mUserId);
|
|
}
|
|
startActivityForResult(intent, CHOOSE_LOCK_GENERIC_REQUEST);
|
|
}
|
|
|
|
private void launchFindSensor(byte[] token) {
|
|
Intent intent = getFindSensorIntent();
|
|
if (token != null) {
|
|
intent.putExtra(ChooseLockSettingsHelper.EXTRA_KEY_CHALLENGE_TOKEN, token);
|
|
}
|
|
if (mUserId != UserHandle.USER_NULL) {
|
|
intent.putExtra(Intent.EXTRA_USER_ID, mUserId);
|
|
}
|
|
startActivityForResult(intent, FINGERPRINT_FIND_SENSOR_REQUEST);
|
|
}
|
|
|
|
protected Intent getChooseLockIntent() {
|
|
return new Intent(this, ChooseLockGeneric.class);
|
|
}
|
|
|
|
protected Intent getFindSensorIntent() {
|
|
return new Intent(this, FingerprintEnrollFindSensor.class);
|
|
}
|
|
|
|
@Override
|
|
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
|
|
final boolean isResultFinished = resultCode == RESULT_FINISHED;
|
|
if (requestCode == FINGERPRINT_FIND_SENSOR_REQUEST) {
|
|
if (isResultFinished || resultCode == RESULT_SKIP) {
|
|
final int result = isResultFinished ? RESULT_OK : RESULT_SKIP;
|
|
setResult(result, data);
|
|
finish();
|
|
return;
|
|
}
|
|
} else if (requestCode == CHOOSE_LOCK_GENERIC_REQUEST) {
|
|
if (isResultFinished) {
|
|
updatePasswordQuality();
|
|
byte[] token = data.getByteArrayExtra(
|
|
ChooseLockSettingsHelper.EXTRA_KEY_CHALLENGE_TOKEN);
|
|
launchFindSensor(token);
|
|
return;
|
|
}
|
|
} else if (requestCode == LEARN_MORE_REQUEST) {
|
|
overridePendingTransition(R.anim.suw_slide_back_in, R.anim.suw_slide_back_out);
|
|
}
|
|
super.onActivityResult(requestCode, resultCode, data);
|
|
}
|
|
|
|
@Override
|
|
public void onClick(View v) {
|
|
if (v.getId() == R.id.fingerprint_cancel_button) {
|
|
onCancelButtonClick();
|
|
} else {
|
|
super.onClick(v);
|
|
}
|
|
}
|
|
|
|
@Override
|
|
protected int getMetricsCategory() {
|
|
return MetricsEvent.FINGERPRINT_ENROLL_INTRO;
|
|
}
|
|
|
|
protected void onCancelButtonClick() {
|
|
finish();
|
|
}
|
|
|
|
@Override
|
|
public void onClick(LinkSpan span) {
|
|
if ("url".equals(span.getId())) {
|
|
String url = getString(R.string.help_url_fingerprint);
|
|
Intent intent = HelpUtils.getHelpIntent(this, url, getClass().getName());
|
|
if (intent == null) {
|
|
Log.w(TAG, "Null help intent.");
|
|
return;
|
|
}
|
|
try {
|
|
// This needs to be startActivityForResult even though we do not care about the
|
|
// actual result because the help app needs to know about who invoked it.
|
|
startActivityForResult(intent, LEARN_MORE_REQUEST);
|
|
} catch (ActivityNotFoundException e) {
|
|
Log.w(TAG, "Activity was not found for intent, " + e);
|
|
}
|
|
}
|
|
}
|
|
}
|