Home
last modified time | relevance | path

Searched refs:mErrorText (Results 1 – 3 of 3) sorted by relevance

/packages/apps/Settings/src/com/android/settings/biometrics/fingerprint/
DFingerprintEnrollEnrolling.java107 private TextView mErrorText; field in FingerprintEnrollEnrolling
157 mErrorText = findViewById(R.id.error_text); in onCreate()
353 mErrorText.removeCallbacks(mTouchAgainRunnable); in onEnrollmentHelp()
364 mErrorText.removeCallbacks(mTouchAgainRunnable); in onEnrollmentError()
375 mErrorText.removeCallbacks(mTouchAgainRunnable); in onEnrollmentProgressChange()
376 mErrorText.postDelayed(mTouchAgainRunnable, HINT_TIMEOUT_DURATION); in onEnrollmentProgressChange()
431 mErrorText.setText(error); in showError()
432 if (mErrorText.getVisibility() == View.INVISIBLE) { in showError()
433 mErrorText.setVisibility(View.VISIBLE); in showError()
434 mErrorText.setTranslationY(getResources().getDimensionPixelSize( in showError()
[all …]
/packages/apps/Settings/src/com/android/settings/biometrics/face/
DFaceEnrollEnrolling.java48 private TextView mErrorText; field in FaceEnrollEnrolling
91 mErrorText = findViewById(R.id.error_text); in onCreate()
202 mErrorText.setText(error); in showError()
203 if (mErrorText.getVisibility() == View.INVISIBLE) { in showError()
204 mErrorText.setVisibility(View.VISIBLE); in showError()
205 mErrorText.setTranslationY(getResources().getDimensionPixelSize( in showError()
207 mErrorText.setAlpha(0f); in showError()
208 mErrorText.animate() in showError()
215 mErrorText.animate().cancel(); in showError()
216 mErrorText.setAlpha(1f); in showError()
[all …]
/packages/apps/Settings/src/com/android/settings/biometrics/
DBiometricEnrollIntroduction.java63 private TextView mErrorText; field in BiometricEnrollIntroduction
176 mErrorText = getErrorTextView(); in onCreate()
225 mErrorText.setText(null); in onResume()
226 mErrorText.setVisibility(View.GONE); in onResume()
229 mErrorText.setText(errorMsg); in onResume()
230 mErrorText.setVisibility(View.VISIBLE); in onResume()