Home
last modified time | relevance | path

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

/frameworks/support/design/src/android/support/design/widget/
DTextInputLayout.java66 private TextView mErrorView; field in TextInputLayout
189 if (mErrorView != null) { in setEditText()
191 ViewCompat.setPaddingRelative(mErrorView, ViewCompat.getPaddingStart(mEditText), in setEditText()
292 if (mErrorView != null) { in setErrorEnabled()
293 ViewCompat.animate(mErrorView).cancel(); in setErrorEnabled()
297 mErrorView = new TextView(getContext()); in setErrorEnabled()
298 mErrorView.setTextAppearance(getContext(), mErrorTextAppearance); in setErrorEnabled()
299 mErrorView.setVisibility(INVISIBLE); in setErrorEnabled()
300 addView(mErrorView); in setErrorEnabled()
304 ViewCompat.setPaddingRelative(mErrorView, ViewCompat.getPaddingStart(mEditText), in setErrorEnabled()
[all …]