FingerprintSettings improvements

- move fingerprint update notifications to a handler
- touching a known fingerprint now highlights the entry in Settings.
- cleanup - remove HashMap and add new FingerprintPreference class.

Bug 19592835

Change-Id: Ie94f825e34c14fe94648375762482f9243b7dd49
This commit is contained in:
Jim Miller
2015-03-12 19:26:12 -07:00
parent 5ee3105917
commit 4f6f7c865f
2 changed files with 128 additions and 27 deletions

View File

@@ -384,15 +384,6 @@ public class FingerprintEnroll extends SettingsActivity {
}
};
private boolean runConfirmDeviceCredentials(int request) {
if (DEBUG) Log.v(TAG, "runKeyguardConfirmation(" + request + ")");
Resources res = getResources();
return new ChooseLockSettingsHelper(getActivity(), this)
.launchConfirmationActivity(request,
res.getText(R.string.master_clear_gesture_prompt),
res.getText(R.string.master_clear_gesture_explanation));
}
@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);