Lines Matching refs:mErrorTextView
34 private final TextView mErrorTextView; field in FingerprintUiHelper
47 mErrorTextView = errorTextView; in FingerprintUiHelper()
105 mErrorTextView.removeCallbacks(mResetErrorTextRunnable); in onAuthenticationSucceeded()
107 mErrorTextView.setTextColor( in onAuthenticationSucceeded()
108 mErrorTextView.getResources().getColor(R.color.success_color, null)); in onAuthenticationSucceeded()
109 mErrorTextView.setText( in onAuthenticationSucceeded()
110 mErrorTextView.getResources().getString(R.string.fingerprint_success)); in onAuthenticationSucceeded()
121 mErrorTextView.setText(error); in showError()
122 mErrorTextView.setTextColor( in showError()
123 mErrorTextView.getResources().getColor(R.color.warning_color, null)); in showError()
124 mErrorTextView.removeCallbacks(mResetErrorTextRunnable); in showError()
125 mErrorTextView.postDelayed(mResetErrorTextRunnable, ERROR_TIMEOUT_MILLIS); in showError()
131 mErrorTextView.setTextColor(
132 mErrorTextView.getResources().getColor(R.color.hint_color, null));
133 mErrorTextView.setText(
134 mErrorTextView.getResources().getString(R.string.fingerprint_hint));