Lines Matching refs:mErrorTextView
38 private final TextView mErrorTextView; field in FingerprintUiHelper
70 mErrorTextView = errorTextView; in FingerprintUiHelper()
124 mErrorTextView.removeCallbacks(mResetErrorTextRunnable); in onAuthenticationSucceeded()
126 mErrorTextView.setTextColor( in onAuthenticationSucceeded()
127 mErrorTextView.getResources().getColor(R.color.success_color, null)); in onAuthenticationSucceeded()
128 mErrorTextView.setText( in onAuthenticationSucceeded()
129 mErrorTextView.getResources().getString(R.string.fingerprint_success)); in onAuthenticationSucceeded()
140 mErrorTextView.setText(error); in showError()
141 mErrorTextView.setTextColor( in showError()
142 mErrorTextView.getResources().getColor(R.color.warning_color, null)); in showError()
143 mErrorTextView.removeCallbacks(mResetErrorTextRunnable); in showError()
144 mErrorTextView.postDelayed(mResetErrorTextRunnable, ERROR_TIMEOUT_MILLIS); in showError()
151 mErrorTextView.setTextColor(
152 mErrorTextView.getResources().getColor(R.color.hint_color, null));
153 mErrorTextView.setText(
154 mErrorTextView.getResources().getString(R.string.fingerprint_hint));