/* * Copyright (C) 2015 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.android.material.textfield; import com.google.android.material.R; import static androidx.annotation.RestrictTo.Scope.LIBRARY_GROUP; import static com.google.android.material.textfield.EditTextUtils.isEditable; import static com.google.android.material.textfield.IndicatorViewController.COUNTER_INDEX; import static com.google.android.material.theme.overlay.MaterialThemeOverlay.wrap; import android.animation.ValueAnimator; import android.content.Context; import android.content.res.ColorStateList; import android.content.res.Configuration; import android.graphics.Canvas; import android.graphics.Color; import android.graphics.Paint; import android.graphics.PorterDuff; import android.graphics.Rect; import android.graphics.RectF; import android.graphics.Typeface; import android.graphics.drawable.ColorDrawable; import android.graphics.drawable.Drawable; import android.graphics.drawable.LayerDrawable; import android.graphics.drawable.RippleDrawable; import android.graphics.drawable.StateListDrawable; import android.os.Build.VERSION; import android.os.Build.VERSION_CODES; import android.os.Parcel; import android.os.Parcelable; import androidx.appcompat.content.res.AppCompatResources; import androidx.appcompat.widget.AppCompatDrawableManager; import androidx.appcompat.widget.AppCompatTextView; import androidx.appcompat.widget.TintTypedArray; import android.text.Editable; import android.text.StaticLayout; import android.text.TextPaint; import android.text.TextUtils; import android.text.TextWatcher; import android.util.AttributeSet; import android.util.Log; import android.util.SparseArray; import android.view.Gravity; import android.view.View; import android.view.ViewGroup; import android.view.ViewStructure; import android.view.ViewTreeObserver.OnGlobalLayoutListener; import android.view.accessibility.AccessibilityEvent; import android.widget.AutoCompleteTextView; import android.widget.EditText; import android.widget.FrameLayout; import android.widget.ImageView.ScaleType; import android.widget.LinearLayout; import android.widget.TextView; import androidx.annotation.ColorInt; import androidx.annotation.ColorRes; import androidx.annotation.DimenRes; import androidx.annotation.DrawableRes; import androidx.annotation.IntDef; import androidx.annotation.IntRange; import androidx.annotation.NonNull; import androidx.annotation.Nullable; import androidx.annotation.Px; import androidx.annotation.RequiresApi; import androidx.annotation.RestrictTo; import androidx.annotation.StringRes; import androidx.annotation.StyleRes; import androidx.annotation.VisibleForTesting; import androidx.core.content.ContextCompat; import androidx.core.graphics.drawable.DrawableCompat; import androidx.core.text.BidiFormatter; import androidx.core.view.AccessibilityDelegateCompat; import androidx.core.view.ViewCompat; import androidx.core.view.accessibility.AccessibilityNodeInfoCompat; import androidx.core.widget.TextViewCompat; import androidx.customview.view.AbsSavedState; import androidx.transition.Fade; import androidx.transition.TransitionManager; import com.google.android.material.animation.AnimationUtils; import com.google.android.material.color.MaterialColors; import com.google.android.material.internal.CheckableImageButton; import com.google.android.material.internal.CollapsingTextHelper; import com.google.android.material.internal.DescendantOffsetUtils; import com.google.android.material.internal.StaticLayoutBuilderCompat; import com.google.android.material.internal.StaticLayoutBuilderCompat.StaticLayoutBuilderCompatException; import com.google.android.material.internal.ThemeEnforcement; import com.google.android.material.internal.ViewUtils; import com.google.android.material.motion.MotionUtils; import com.google.android.material.resources.MaterialResources; import com.google.android.material.shape.CornerFamily; import com.google.android.material.shape.CornerTreatment; import com.google.android.material.shape.MaterialShapeDrawable; import com.google.android.material.shape.ShapeAppearanceModel; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.util.LinkedHashSet; /** * Layout which wraps a {@link TextInputEditText}, {@link android.widget.EditText}, or descendant to * show a floating label when the hint is hidden while the user inputs text. * *
Also supports: * *
Note: When using an end icon, the 'end' compound drawable of the * EditText will be overridden while the end icon view is visible. To ensure that any existing * drawables are restored correctly, you should set those compound drawables relatively * (start/end), as opposed to absolutely (left/right). *
Note: Use the {@link #setStartIconDrawable(Drawable)} API in place of * setting a start/left compound drawable on the EditText. When using a start icon, the * 'start/left' compound drawable of the EditText will be overridden. *
To disable user input you should set *
android:editable="false"* on the {@link AutoCompleteTextView}. *
The {@link TextInputEditText} class is provided to be used as the input text child of this * layout. Using TextInputEditText instead of an EditText provides accessibility support for the * text field and allows TextInputLayout greater control over the visual aspects of the text field. * This is an example usage: * *
* <com.google.android.material.textfield.TextInputLayout * android:layout_width="match_parent" * android:layout_height="wrap_content" * android:hint="@string/form_username"> * * <com.google.android.material.textfield.TextInputEditText * android:layout_width="match_parent" * android:layout_height="wrap_content"/> * * </com.google.android.material.textfield.TextInputLayout> ** * The hint should be set on the TextInputLayout, rather than the EditText. If a hint is specified * on the child EditText in XML, the TextInputLayout might still work correctly; TextInputLayout * will use the EditText's hint as its floating label. However, future calls to modify the hint will * not update TextInputLayout's hint. To avoid unintended behavior, call {@link * TextInputLayout#setHint(CharSequence)} and {@link TextInputLayout#getHint()} on TextInputLayout, * instead of on EditText. * *
If you construct the {@link TextInputEditText} child of a {@link TextInputLayout} * programmatically, you should use {@link TextInputLayout}'s {@code context} to create the view. * This will allow {@link TextInputLayout} to pass along the appropriate styling to the {@link * TextInputEditText}. * *
If the {@link EditText} child is not a {@link TextInputEditText}, make sure to set the {@link * EditText}'s {@code android:background} to {@code null} when using an outlined or filled text * field. This allows {@link TextInputLayout} to set the {@link EditText}'s background to an * outlined or filled box, respectively. * *
Note: The actual view hierarchy present under TextInputLayout is * NOT guaranteed to match the view hierarchy as written in XML. As a result, calls * to {@code getParent()} on children of the TextInputLayout -- such as a TextInputEditText -- may * not return the TextInputLayout itself, but rather an intermediate View. If you need to access a * View directly, set an {@code android:id} and use {@link View#findViewById(int)}. * *
For more information, see the component * developer guidance and design * guidelines. */ public class TextInputLayout extends LinearLayout implements OnGlobalLayoutListener { private static final String TAG = "TextInputLayout"; private static final int DEF_STYLE_RES = R.style.Widget_Design_TextInputLayout; /** Duration for the label's scale up and down animations. */ private static final int LABEL_SCALE_ANIMATION_DURATION = 167; private static final int DEFAULT_PLACEHOLDER_FADE_DURATION = 87; private static final int PLACEHOLDER_START_DELAY = 67; private static final int INVALID_MAX_LENGTH = -1; private static final int NO_WIDTH = -1; private static final int[][] EDIT_TEXT_BACKGROUND_RIPPLE_STATE = new int[][] { new int[] {android.R.attr.state_pressed}, new int[] {}, }; private static final String LOG_TAG = "TextInputLayout"; @NonNull private final FrameLayout inputFrame; @NonNull private final StartCompoundLayout startLayout; @NonNull private final EndCompoundLayout endLayout; private final int extraSpaceBetweenPlaceholderAndHint; EditText editText; private CharSequence originalHint; private int minEms = NO_WIDTH; private int maxEms = NO_WIDTH; private int minWidth = NO_WIDTH; private int maxWidth = NO_WIDTH; private final IndicatorViewController indicatorViewController = new IndicatorViewController(this); /** Interface definition for a length counter. */ public interface LengthCounter { /** * Counts the length of the text and returns it. * * @param text The text to count the length for. * @return The count that the counter should be updated with. */ int countLength(@Nullable Editable text); } boolean counterEnabled; private int counterMaxLength; private boolean counterOverflowed; @NonNull private LengthCounter lengthCounter = (Editable text) -> text != null ? text.length() : 0; @Nullable private TextView counterView; private int counterOverflowTextAppearance; private int counterTextAppearance; private CharSequence placeholderText; private boolean placeholderEnabled; private TextView placeholderTextView; @Nullable private ColorStateList placeholderTextColor; private int placeholderTextAppearance; @Nullable private Fade placeholderFadeIn; @Nullable private Fade placeholderFadeOut; @Nullable private ColorStateList counterTextColor; @Nullable private ColorStateList counterOverflowTextColor; @Nullable private ColorStateList cursorColor; @Nullable private ColorStateList cursorErrorColor; private boolean hintEnabled; private CharSequence hint; /** * {@code true} when providing a hint on behalf of a child {@link EditText}. If the child is an * instance of {@link TextInputEditText}, this value defines the behavior of its {@link * TextInputEditText#getHint()} method. */ private boolean isProvidingHint; @Nullable private MaterialShapeDrawable boxBackground; private MaterialShapeDrawable outlinedDropDownMenuBackground; private StateListDrawable filledDropDownMenuBackground; private boolean boxBackgroundApplied; @Nullable private MaterialShapeDrawable boxUnderlineDefault; @Nullable private MaterialShapeDrawable boxUnderlineFocused; @NonNull private ShapeAppearanceModel shapeAppearanceModel; private boolean areCornerRadiiRtl; private final int boxLabelCutoutPaddingPx; @BoxBackgroundMode private int boxBackgroundMode; private int boxCollapsedPaddingTopPx; private int boxStrokeWidthPx; private int boxStrokeWidthDefaultPx; private int boxStrokeWidthFocusedPx; @ColorInt private int boxStrokeColor; @ColorInt private int boxBackgroundColor; /** * Values for box background mode. There is either a filled background, an outline background, or * no background. */ @IntDef({BOX_BACKGROUND_NONE, BOX_BACKGROUND_FILLED, BOX_BACKGROUND_OUTLINE}) @Retention(RetentionPolicy.SOURCE) public @interface BoxBackgroundMode {} public static final int BOX_BACKGROUND_NONE = 0; public static final int BOX_BACKGROUND_FILLED = 1; public static final int BOX_BACKGROUND_OUTLINE = 2; private final Rect tmpRect = new Rect(); private final Rect tmpBoundsRect = new Rect(); private final RectF tmpRectF = new RectF(); private Typeface typeface; @Nullable private Drawable startDummyDrawable; private int startDummyDrawableWidth; /** * Values for the end icon mode. * * @hide */ @RestrictTo(LIBRARY_GROUP) @IntDef({ END_ICON_CUSTOM, END_ICON_NONE, END_ICON_PASSWORD_TOGGLE, END_ICON_CLEAR_TEXT, END_ICON_DROPDOWN_MENU }) @Retention(RetentionPolicy.SOURCE) public @interface EndIconMode {} /** * The TextInputLayout will show a custom icon specified by the user. * * @see #setEndIconMode(int) * @see #getEndIconMode() * @see #setEndIconDrawable(Drawable) * @see #setEndIconContentDescription(CharSequence) * @see #setEndIconOnClickListener(OnClickListener) (optionally) * @see #addOnEditTextAttachedListener(OnEditTextAttachedListener) (optionally) * @see #addOnEndIconChangedListener(OnEndIconChangedListener) (optionally) */ public static final int END_ICON_CUSTOM = -1; /** * Default for the TextInputLayout. It will not display an end icon. * * @see #setEndIconMode(int) * @see #getEndIconMode() */ public static final int END_ICON_NONE = 0; /** * The TextInputLayout will show a password toggle button if its EditText displays a password. * When this end icon is clicked, the password is shown as plain-text if it was disguised, or * vice-versa. * * @see #setEndIconMode(int) * @see #getEndIconMode() */ public static final int END_ICON_PASSWORD_TOGGLE = 1; /** * The TextInputLayout will show a clear text button while there is input in the EditText. * Clicking it will clear out the text and hide the icon. * * @see #setEndIconMode(int) * @see #getEndIconMode() */ public static final int END_ICON_CLEAR_TEXT = 2; /** * The TextInputLayout will show a dropdown button if the EditText is an {@link * AutoCompleteTextView} and a {@code * Widget.MaterialComponents.TextInputLayout.(...).ExposedDropdownMenu} style is being used. * *
Clicking the button will display a popup with a list of options. The current selected option
* is displayed on the EditText.
*/
public static final int END_ICON_DROPDOWN_MENU = 3;
/**
* Callback interface invoked when the view's {@link EditText} is attached, or from {@link
* #addOnEditTextAttachedListener(OnEditTextAttachedListener)} if the edit text is already
* present.
*
* @see #addOnEditTextAttachedListener(OnEditTextAttachedListener)
*/
public interface OnEditTextAttachedListener {
/**
* Called when the {@link EditText} is attached, or from {@link
* #addOnEditTextAttachedListener(OnEditTextAttachedListener)} if the edit text is already
* present.
*
* @param textInputLayout the {@link TextInputLayout}
*/
void onEditTextAttached(@NonNull TextInputLayout textInputLayout);
}
/**
* Callback interface invoked when the view's end icon changes.
*
* @see #setEndIconMode(int)
*/
public interface OnEndIconChangedListener {
/**
* Called when the end icon changes.
*
* @param textInputLayout the {@link TextInputLayout}
* @param previousIcon the end icon mode the view previously had set
*/
void onEndIconChanged(@NonNull TextInputLayout textInputLayout, @EndIconMode int previousIcon);
}
private final LinkedHashSet May be one of {@link #BOX_BACKGROUND_NONE}, {@link #BOX_BACKGROUND_FILLED}, or {@link
* #BOX_BACKGROUND_OUTLINE}.
*
* Note: This method defines TextInputLayout's internal behavior (for example, it allows the
* hint to be displayed inline with the stroke in a cutout), but doesn't set all attributes that
* are set in the styles provided for the box background modes. To achieve the look of an outlined
* or filled text field, supplement this method with other methods that modify the box, such as
* {@link #setBoxStrokeColor(int)} and {@link #setBoxBackgroundColor(int)}.
*
* @param boxBackgroundMode box's background mode
* @throws IllegalArgumentException if boxBackgroundMode is not a @BoxBackgroundMode constant
*/
public void setBoxBackgroundMode(@BoxBackgroundMode int boxBackgroundMode) {
if (boxBackgroundMode == this.boxBackgroundMode) {
return;
}
this.boxBackgroundMode = boxBackgroundMode;
if (editText != null) {
onApplyBoxBackgroundMode();
}
}
/**
* Get the box background mode (filled, outline, or none).
*
* May be one of {@link #BOX_BACKGROUND_NONE}, {@link #BOX_BACKGROUND_FILLED}, or {@link
* #BOX_BACKGROUND_OUTLINE}.
*/
@BoxBackgroundMode
public int getBoxBackgroundMode() {
return boxBackgroundMode;
}
private void onApplyBoxBackgroundMode() {
assignBoxBackgroundByMode();
updateEditTextBoxBackgroundIfNeeded();
updateTextInputBoxState();
updateBoxCollapsedPaddingTop();
adjustFilledEditTextPaddingForLargeFont();
if (boxBackgroundMode != BOX_BACKGROUND_NONE) {
updateInputLayoutMargins();
}
setDropDownMenuBackgroundIfNeeded();
}
private void assignBoxBackgroundByMode() {
switch (boxBackgroundMode) {
case BOX_BACKGROUND_FILLED:
boxBackground = new MaterialShapeDrawable(shapeAppearanceModel);
boxUnderlineDefault = new MaterialShapeDrawable();
boxUnderlineFocused = new MaterialShapeDrawable();
break;
case BOX_BACKGROUND_OUTLINE:
if (hintEnabled && !(boxBackground instanceof CutoutDrawable)) {
boxBackground = CutoutDrawable.create(shapeAppearanceModel);
} else {
boxBackground = new MaterialShapeDrawable(shapeAppearanceModel);
}
boxUnderlineDefault = null;
boxUnderlineFocused = null;
break;
case BOX_BACKGROUND_NONE:
boxBackground = null;
boxUnderlineDefault = null;
boxUnderlineFocused = null;
break;
default:
throw new IllegalArgumentException(
boxBackgroundMode + " is illegal; only @BoxBackgroundMode constants are supported.");
}
}
void updateEditTextBoxBackgroundIfNeeded() {
if (editText == null
|| boxBackground == null
// Only set boxBackground when edit text doesn't provide its own background.
|| (!boxBackgroundApplied && editText.getBackground() != null)
|| boxBackgroundMode == BOX_BACKGROUND_NONE) {
return;
}
updateEditTextBoxBackground();
boxBackgroundApplied = true;
}
private void updateEditTextBoxBackground() {
Drawable editTextBoxBackground = getEditTextBoxBackground();
editText.setBackground(editTextBoxBackground);
}
@Nullable
private Drawable getEditTextBoxBackground() {
if (!(editText instanceof AutoCompleteTextView) || isEditable(editText)) {
return boxBackground;
}
int rippleColor =
MaterialColors.getColor(
editText, androidx.appcompat.R.attr.colorControlHighlight);
if (boxBackgroundMode == TextInputLayout.BOX_BACKGROUND_OUTLINE) {
return getOutlinedBoxBackgroundWithRipple(
getContext(), boxBackground, rippleColor, EDIT_TEXT_BACKGROUND_RIPPLE_STATE);
} else if (boxBackgroundMode == TextInputLayout.BOX_BACKGROUND_FILLED) {
return getFilledBoxBackgroundWithRipple(
boxBackground, boxBackgroundColor, rippleColor, EDIT_TEXT_BACKGROUND_RIPPLE_STATE);
}
// Should not happen.
return null;
}
private static Drawable getOutlinedBoxBackgroundWithRipple(
Context context, MaterialShapeDrawable boxBackground, int rippleColor, int[][] states) {
LayerDrawable editTextBackground;
int surfaceColor = MaterialColors.getColor(context, R.attr.colorSurface, "TextInputLayout");
MaterialShapeDrawable rippleBackground =
new MaterialShapeDrawable(boxBackground.getShapeAppearanceModel());
int pressedBackgroundColor = MaterialColors.layer(rippleColor, surfaceColor, 0.1f);
int[] rippleBackgroundColors = new int[] { pressedBackgroundColor, Color.TRANSPARENT };
rippleBackground.setFillColor(new ColorStateList(states, rippleBackgroundColors));
rippleBackground.setTint(surfaceColor);
int[] colors = new int[] {pressedBackgroundColor, surfaceColor};
ColorStateList rippleColorStateList = new ColorStateList(states, colors);
MaterialShapeDrawable mask =
new MaterialShapeDrawable(boxBackground.getShapeAppearanceModel());
mask.setTint(Color.WHITE);
Drawable rippleDrawable = new RippleDrawable(rippleColorStateList, rippleBackground, mask);
Drawable[] layers = {rippleDrawable, boxBackground};
editTextBackground = new LayerDrawable(layers);
return editTextBackground;
}
private static Drawable getFilledBoxBackgroundWithRipple(
MaterialShapeDrawable boxBackground,
int boxBackgroundColor,
int rippleColor,
int[][] states) {
int pressedBackgroundColor = MaterialColors.layer(rippleColor, boxBackgroundColor, 0.1f);
int[] colors = new int[] { pressedBackgroundColor, boxBackgroundColor };
ColorStateList rippleColorStateList = new ColorStateList(states, colors);
return new RippleDrawable(rippleColorStateList, boxBackground, boxBackground);
}
private void setDropDownMenuBackgroundIfNeeded() {
if (!(editText instanceof AutoCompleteTextView)) {
return;
}
AutoCompleteTextView autoCompleteTextView = (AutoCompleteTextView) editText;
if (autoCompleteTextView.getDropDownBackground() == null) {
if (boxBackgroundMode == BOX_BACKGROUND_OUTLINE) {
autoCompleteTextView.setDropDownBackgroundDrawable(
getOrCreateOutlinedDropDownMenuBackground());
} else if (boxBackgroundMode == BOX_BACKGROUND_FILLED) {
autoCompleteTextView.setDropDownBackgroundDrawable(
getOrCreateFilledDropDownMenuBackground());
}
}
}
private Drawable getOrCreateOutlinedDropDownMenuBackground() {
if (outlinedDropDownMenuBackground == null) {
outlinedDropDownMenuBackground = getDropDownMaterialShapeDrawable(true);
}
return outlinedDropDownMenuBackground;
}
private Drawable getOrCreateFilledDropDownMenuBackground() {
if (filledDropDownMenuBackground == null) {
filledDropDownMenuBackground = new StateListDrawable();
filledDropDownMenuBackground.addState(
new int[] {android.R.attr.state_above_anchor},
getOrCreateOutlinedDropDownMenuBackground());
filledDropDownMenuBackground.addState(new int[] {}, getDropDownMaterialShapeDrawable(false));
}
return filledDropDownMenuBackground;
}
private MaterialShapeDrawable getDropDownMaterialShapeDrawable(boolean roundedTopCorners) {
float cornerRadius =
getResources().getDimensionPixelOffset(R.dimen.mtrl_shape_corner_size_small_component);
float topCornerRadius = roundedTopCorners ? cornerRadius : 0;
float elevation =
editText instanceof MaterialAutoCompleteTextView
? ((MaterialAutoCompleteTextView) editText).getPopupElevation()
: getResources().getDimensionPixelOffset(
R.dimen.m3_comp_outlined_autocomplete_menu_container_elevation);
int verticalPadding =
getResources()
.getDimensionPixelOffset(R.dimen.mtrl_exposed_dropdown_menu_popup_vertical_padding);
ShapeAppearanceModel shapeAppearanceModel =
ShapeAppearanceModel.builder()
.setTopLeftCornerSize(topCornerRadius)
.setTopRightCornerSize(topCornerRadius)
.setBottomLeftCornerSize(cornerRadius)
.setBottomRightCornerSize(cornerRadius)
.build();
ColorStateList dropDownBackgroundTint = null;
if (editText instanceof MaterialAutoCompleteTextView) {
MaterialAutoCompleteTextView materialAutoCompleteTextView =
((MaterialAutoCompleteTextView) editText);
dropDownBackgroundTint = materialAutoCompleteTextView.getDropDownBackgroundTintList();
}
MaterialShapeDrawable popupDrawable =
MaterialShapeDrawable.createWithElevationOverlay(
getContext(), elevation, dropDownBackgroundTint);
popupDrawable.setShapeAppearanceModel(shapeAppearanceModel);
popupDrawable.setPadding(0, verticalPadding, 0, verticalPadding);
return popupDrawable;
}
private void updateBoxCollapsedPaddingTop() {
if (boxBackgroundMode == BOX_BACKGROUND_FILLED) {
if (MaterialResources.isFontScaleAtLeast2_0(getContext())) {
boxCollapsedPaddingTopPx =
getResources()
.getDimensionPixelSize(R.dimen.material_font_2_0_box_collapsed_padding_top);
} else if (MaterialResources.isFontScaleAtLeast1_3(getContext())) {
boxCollapsedPaddingTopPx =
getResources()
.getDimensionPixelSize(R.dimen.material_font_1_3_box_collapsed_padding_top);
}
}
}
private void adjustFilledEditTextPaddingForLargeFont() {
if (editText == null || boxBackgroundMode != BOX_BACKGROUND_FILLED) {
return;
}
// Both dense and default styles end up with the same vertical padding.
if (!isHintTextSingleLine()) {
editText.setPaddingRelative(
editText.getPaddingStart(),
(int) (collapsingTextHelper.getCollapsedTextHeight()
+ extraSpaceBetweenPlaceholderAndHint),
editText.getPaddingEnd(),
getResources()
.getDimensionPixelSize(R.dimen.material_filled_edittext_font_1_3_padding_bottom));
} else if (MaterialResources.isFontScaleAtLeast2_0(getContext())) {
editText.setPaddingRelative(
editText.getPaddingStart(),
getResources()
.getDimensionPixelSize(R.dimen.material_filled_edittext_font_2_0_padding_top),
editText.getPaddingEnd(),
getResources()
.getDimensionPixelSize(R.dimen.material_filled_edittext_font_2_0_padding_bottom));
} else if (MaterialResources.isFontScaleAtLeast1_3(getContext())) {
editText.setPaddingRelative(
editText.getPaddingStart(),
getResources()
.getDimensionPixelSize(R.dimen.material_filled_edittext_font_1_3_padding_top),
editText.getPaddingEnd(),
getResources()
.getDimensionPixelSize(R.dimen.material_filled_edittext_font_1_3_padding_bottom));
}
}
/**
* Set the value to use for the EditText's collapsed top padding in box mode.
*
* Customized boxCollapsedPaddingTop will be disabled if the font scale is larger than 1.3.
*
* @param boxCollapsedPaddingTop the value to use for the EditText's collapsed top padding
* @attr ref com.google.android.material.R.styleable#TextInputLayout_boxCollapsedPaddingTop
* @see #getBoxCollapsedPaddingTop()
*/
public void setBoxCollapsedPaddingTop(int boxCollapsedPaddingTop) {
boxCollapsedPaddingTopPx = boxCollapsedPaddingTop;
}
/**
* Returns the EditText's collapsed top padding
*
* @return the value used for the box's padding top when collapsed
* @see #setBoxCollapsedPaddingTop(int)
*/
public int getBoxCollapsedPaddingTop() {
return boxCollapsedPaddingTopPx;
}
/**
* Set the resource dimension to use for the box's stroke when in outline box mode, or for the
* underline stroke in filled mode.
*
* @param boxStrokeWidthResId the resource dimension to use for the box's stroke width
* @attr ref com.google.android.material.R.styleable#TextInputLayout_boxStrokeWidth
* @see #setBoxStrokeWidth(int)
* @see #getBoxStrokeWidth()
*/
public void setBoxStrokeWidthResource(@DimenRes int boxStrokeWidthResId) {
setBoxStrokeWidth(getResources().getDimensionPixelSize(boxStrokeWidthResId));
}
/**
* Set the value to use for the box's stroke when in outline box mode, or for the underline stroke
* in filled mode.
*
* @param boxStrokeWidth the value to use for the box's stroke
* @attr ref com.google.android.material.R.styleable#TextInputLayout_boxStrokeWidth
* @see #getBoxStrokeWidth()
*/
public void setBoxStrokeWidth(int boxStrokeWidth) {
boxStrokeWidthDefaultPx = boxStrokeWidth;
updateTextInputBoxState();
}
/**
* Returns the box's stroke width.
*
* @return the value used for the box's stroke width
* @see #setBoxStrokeWidth(int)
*/
public int getBoxStrokeWidth() {
return boxStrokeWidthDefaultPx;
}
/**
* Set the resource dimension to use for the focused box's stroke when in outline box mode, or for
* the focused underline stroke in filled mode.
*
* @param boxStrokeWidthFocusedResId the resource dimension to use for the box's stroke width when
* focused
* @attr ref com.google.android.material.R.styleable#TextInputLayout_boxStrokeWidthFocused
* @see #setBoxStrokeWidthFocused(int)
* @see #getBoxStrokeWidthFocused()
*/
public void setBoxStrokeWidthFocusedResource(@DimenRes int boxStrokeWidthFocusedResId) {
setBoxStrokeWidthFocused(getResources().getDimensionPixelSize(boxStrokeWidthFocusedResId));
}
/**
* Set the value to use for the focused box's stroke when in outline box mode, or for the focused
* underline stroke in filled mode.
*
* @param boxStrokeWidthFocused the value to use for the box's stroke when focused
* @attr ref com.google.android.material.R.styleable#TextInputLayout_boxStrokeWidthFocused
* @see #getBoxStrokeWidthFocused()
*/
public void setBoxStrokeWidthFocused(int boxStrokeWidthFocused) {
boxStrokeWidthFocusedPx = boxStrokeWidthFocused;
updateTextInputBoxState();
}
/**
* Returns the box's stroke focused width.
*
* @return the value used for the box's stroke width when focused
* @see #setBoxStrokeWidthFocused(int)
*/
public int getBoxStrokeWidthFocused() {
return boxStrokeWidthFocusedPx;
}
/**
* Set the outline box's stroke focused color.
*
* Calling this method when not in outline box mode will do nothing.
*
* @param boxStrokeColor the color to use for the box's stroke when focused
* @see #getBoxStrokeColor()
*/
public void setBoxStrokeColor(@ColorInt int boxStrokeColor) {
if (focusedStrokeColor != boxStrokeColor) {
focusedStrokeColor = boxStrokeColor;
updateTextInputBoxState();
}
}
/**
* Returns the box's stroke focused color.
*
* @return the color used for the box's stroke when focused
* @see #setBoxStrokeColor(int)
*/
public int getBoxStrokeColor() {
return focusedStrokeColor;
}
/**
* Set the box's stroke color state list.
*
* @param boxStrokeColorStateList the color state list to use for the box's stroke
*/
public void setBoxStrokeColorStateList(@NonNull ColorStateList boxStrokeColorStateList) {
if (boxStrokeColorStateList.isStateful()) {
defaultStrokeColor = boxStrokeColorStateList.getDefaultColor();
disabledColor =
boxStrokeColorStateList.getColorForState(new int[] {-android.R.attr.state_enabled}, -1);
hoveredStrokeColor =
boxStrokeColorStateList.getColorForState(
new int[] {android.R.attr.state_hovered, android.R.attr.state_enabled}, -1);
focusedStrokeColor =
boxStrokeColorStateList.getColorForState(
new int[] {android.R.attr.state_focused, android.R.attr.state_enabled}, -1);
} else if (focusedStrokeColor != boxStrokeColorStateList.getDefaultColor()) {
// If attribute boxStrokeColor is not a color state list but only a single value, its value
// will be applied to the box's focus state.
focusedStrokeColor = boxStrokeColorStateList.getDefaultColor();
}
updateTextInputBoxState();
}
/**
* Set the outline box's stroke color when an error is being displayed.
*
* Calling this method when not in outline box mode will do nothing.
*
* @param strokeErrorColor the error color to use for the box's stroke
* @see #getBoxStrokeErrorColor()
*/
public void setBoxStrokeErrorColor(@Nullable ColorStateList strokeErrorColor) {
if (this.strokeErrorColor != strokeErrorColor) {
this.strokeErrorColor = strokeErrorColor;
updateTextInputBoxState();
}
}
/**
* Returns the box's stroke color when an error is being displayed.
*
* @attr ref com.google.android.material.R.styleable#TextInputLayout_boxStrokeErrorColor
* @see #setBoxStrokeErrorColor(ColorStateList)
*/
@Nullable
public ColorStateList getBoxStrokeErrorColor() {
return strokeErrorColor;
}
/**
* Set the resource used for the filled box's background color.
*
* Note: The background color is only supported for filled boxes. When used with box variants
* other than {@link BoxBackgroundMode#BOX_BACKGROUND_FILLED}, the box background color may not
* work as intended.
*
* @param boxBackgroundColorId the resource to use for the box's background color
*/
public void setBoxBackgroundColorResource(@ColorRes int boxBackgroundColorId) {
setBoxBackgroundColor(ContextCompat.getColor(getContext(), boxBackgroundColorId));
}
/**
* Sets the filled box's default background color. Calling this method will make the background
* color not be stateful, if it was before.
*
* Note: The background color is only supported for filled boxes. When used with box variants
* other than {@link BoxBackgroundMode#BOX_BACKGROUND_FILLED}, the box background color may not
* work as intended.
*
* @param boxBackgroundColor the color to use for the filled box's background
* @see #getBoxBackgroundColor()
*/
public void setBoxBackgroundColor(@ColorInt int boxBackgroundColor) {
if (this.boxBackgroundColor != boxBackgroundColor) {
this.boxBackgroundColor = boxBackgroundColor;
defaultFilledBackgroundColor = boxBackgroundColor;
focusedFilledBackgroundColor = boxBackgroundColor;
hoveredFilledBackgroundColor = boxBackgroundColor;
applyBoxAttributes();
}
}
/**
* Sets the box's background color state list.
*
* Note: The background color is only supported for filled boxes. When used with box variants
* other than {@link BoxBackgroundMode#BOX_BACKGROUND_FILLED}, the box background color may not
* work as intended.
*
* @param boxBackgroundColorStateList the color state list to use for the box's background color
*/
public void setBoxBackgroundColorStateList(@NonNull ColorStateList boxBackgroundColorStateList) {
defaultFilledBackgroundColor = boxBackgroundColorStateList.getDefaultColor();
boxBackgroundColor = defaultFilledBackgroundColor;
disabledFilledBackgroundColor =
boxBackgroundColorStateList.getColorForState(new int[] {-android.R.attr.state_enabled}, -1);
focusedFilledBackgroundColor =
boxBackgroundColorStateList.getColorForState(
new int[] {android.R.attr.state_focused, android.R.attr.state_enabled}, -1);
hoveredFilledBackgroundColor =
boxBackgroundColorStateList.getColorForState(
new int[] {android.R.attr.state_hovered, android.R.attr.state_enabled}, -1);
applyBoxAttributes();
}
/**
* Returns the filled box's default background color.
*
* @return the color used for the filled box's background
* @see #setBoxBackgroundColor(int)
*/
public int getBoxBackgroundColor() {
return boxBackgroundColor;
}
/**
* Sets the {@link ShapeAppearanceModel} of the text field's box background.
*
* @param shapeAppearanceModel the desired shape appearance model.
* @see #getShapeAppearanceModel()
*/
public void setShapeAppearanceModel(@NonNull ShapeAppearanceModel shapeAppearanceModel) {
if (boxBackground != null && boxBackground.getShapeAppearanceModel() != shapeAppearanceModel) {
this.shapeAppearanceModel = shapeAppearanceModel;
applyBoxAttributes();
}
}
/**
* Returns the {@link ShapeAppearanceModel} of the text field's box background.
*
* @see #setShapeAppearanceModel(ShapeAppearanceModel)
*/
@NonNull
public ShapeAppearanceModel getShapeAppearanceModel() {
return shapeAppearanceModel;
}
/**
* Sets the box's corner family for all corners of the text field.
*
* @param cornerFamily the {@link CornerFamily} to be used. May be one of {@link
* CornerFamily#ROUNDED} or {@link CornerFamily#CUT}.
*/
public void setBoxCornerFamily(@CornerFamily int cornerFamily) {
shapeAppearanceModel =
shapeAppearanceModel.toBuilder()
.setTopLeftCorner(cornerFamily, shapeAppearanceModel.getTopLeftCornerSize())
.setTopRightCorner(cornerFamily, shapeAppearanceModel.getTopRightCornerSize())
.setBottomLeftCorner(cornerFamily, shapeAppearanceModel.getBottomLeftCornerSize())
.setBottomRightCorner(cornerFamily, shapeAppearanceModel.getBottomRightCornerSize())
.build();
applyBoxAttributes();
}
/**
* Set the resources used for the box's corner radii.
*
* @param boxCornerRadiusTopStartId the resource to use for the box's top start corner radius
* @param boxCornerRadiusTopEndId the resource to use for the box's top end corner radius
* @param boxCornerRadiusBottomEndId the resource to use for the box's bottom end corner radius
* @param boxCornerRadiusBottomStartId the resource to use for the box's bottom start corner
* radius
*/
public void setBoxCornerRadiiResources(
@DimenRes int boxCornerRadiusTopStartId,
@DimenRes int boxCornerRadiusTopEndId,
@DimenRes int boxCornerRadiusBottomEndId,
@DimenRes int boxCornerRadiusBottomStartId) {
setBoxCornerRadii(
getContext().getResources().getDimension(boxCornerRadiusTopStartId),
getContext().getResources().getDimension(boxCornerRadiusTopEndId),
getContext().getResources().getDimension(boxCornerRadiusBottomStartId),
getContext().getResources().getDimension(boxCornerRadiusBottomEndId));
}
/**
* Set the box's corner radii.
*
* @param boxCornerRadiusTopStart the value to use for the box's top start corner radius
* @param boxCornerRadiusTopEnd the value to use for the box's top end corner radius
* @param boxCornerRadiusBottomEnd the value to use for the box's bottom end corner radius
* @param boxCornerRadiusBottomStart the value to use for the box's bottom start corner radius
* @see #getBoxCornerRadiusTopStart()
* @see #getBoxCornerRadiusTopEnd()
* @see #getBoxCornerRadiusBottomEnd()
* @see #getBoxCornerRadiusBottomStart()
*/
public void setBoxCornerRadii(
float boxCornerRadiusTopStart,
float boxCornerRadiusTopEnd,
float boxCornerRadiusBottomStart,
float boxCornerRadiusBottomEnd) {
areCornerRadiiRtl = ViewUtils.isLayoutRtl(this);
float boxCornerRadiusTopLeft =
areCornerRadiiRtl ? boxCornerRadiusTopEnd : boxCornerRadiusTopStart;
float boxCornerRadiusTopRight =
areCornerRadiiRtl ? boxCornerRadiusTopStart : boxCornerRadiusTopEnd;
float boxCornerRadiusBottomLeft =
areCornerRadiiRtl ? boxCornerRadiusBottomEnd : boxCornerRadiusBottomStart;
float boxCornerRadiusBottomRight =
areCornerRadiiRtl ? boxCornerRadiusBottomStart : boxCornerRadiusBottomEnd;
if (boxBackground == null
|| boxBackground.getTopLeftCornerResolvedSize() != boxCornerRadiusTopLeft
|| boxBackground.getTopRightCornerResolvedSize() != boxCornerRadiusTopRight
|| boxBackground.getBottomLeftCornerResolvedSize() != boxCornerRadiusBottomLeft
|| boxBackground.getBottomRightCornerResolvedSize() != boxCornerRadiusBottomRight) {
shapeAppearanceModel =
shapeAppearanceModel.toBuilder()
.setTopLeftCornerSize(boxCornerRadiusTopLeft)
.setTopRightCornerSize(boxCornerRadiusTopRight)
.setBottomLeftCornerSize(boxCornerRadiusBottomLeft)
.setBottomRightCornerSize(boxCornerRadiusBottomRight)
.build();
applyBoxAttributes();
}
}
/**
* Returns the box's top start corner radius.
*
* @return the value used for the box's top start corner radius
* @see #setBoxCornerRadii(float, float, float, float)
*/
public float getBoxCornerRadiusTopStart() {
return ViewUtils.isLayoutRtl(this)
? shapeAppearanceModel.getTopRightCornerSize().getCornerSize(tmpRectF)
: shapeAppearanceModel.getTopLeftCornerSize().getCornerSize(tmpRectF);
}
/**
* Returns the box's top end corner radius.
*
* @return the value used for the box's top end corner radius
* @see #setBoxCornerRadii(float, float, float, float)
*/
public float getBoxCornerRadiusTopEnd() {
return ViewUtils.isLayoutRtl(this)
? shapeAppearanceModel.getTopLeftCornerSize().getCornerSize(tmpRectF)
: shapeAppearanceModel.getTopRightCornerSize().getCornerSize(tmpRectF);
}
/**
* Returns the box's bottom end corner radius.
*
* @return the value used for the box's bottom end corner radius
* @see #setBoxCornerRadii(float, float, float, float)
*/
public float getBoxCornerRadiusBottomEnd() {
return ViewUtils.isLayoutRtl(this)
? shapeAppearanceModel.getBottomLeftCornerSize().getCornerSize(tmpRectF)
: shapeAppearanceModel.getBottomRightCornerSize().getCornerSize(tmpRectF);
}
/**
* Returns the box's bottom start corner radius.
*
* @return the value used for the box's bottom start corner radius
* @see #setBoxCornerRadii(float, float, float, float)
*/
public float getBoxCornerRadiusBottomStart() {
return ViewUtils.isLayoutRtl(this)
? shapeAppearanceModel.getBottomRightCornerSize().getCornerSize(tmpRectF)
: shapeAppearanceModel.getBottomLeftCornerSize().getCornerSize(tmpRectF);
}
/**
* Set the typeface to use for the hint and any label views (such as counter and error views).
*
* @param typeface typeface to use, or {@code null} to use the default.
*/
@SuppressWarnings("ReferenceEquality") // Matches the Typeface comparison in TextView
public void setTypeface(@Nullable Typeface typeface) {
if (typeface != this.typeface) {
this.typeface = typeface;
collapsingTextHelper.setTypefaces(typeface);
indicatorViewController.setTypefaces(typeface);
if (counterView != null) {
counterView.setTypeface(typeface);
}
}
}
/**
* Returns the typeface used for the hint and any label views (such as counter and error views).
*/
@Nullable
public Typeface getTypeface() {
return typeface;
}
/**
* Set the counting method used to count the length of a text.
*
* @param lengthCounter the length counter to use.
*/
public void setLengthCounter(@NonNull LengthCounter lengthCounter) {
this.lengthCounter = lengthCounter;
}
/**
* Returns the counting method used to count the length of the text. The default counter will
* count the number of characters.
*/
@NonNull
public LengthCounter getLengthCounter() {
return lengthCounter;
}
@Override
@RequiresApi(VERSION_CODES.O)
public void dispatchProvideAutofillStructure(@NonNull ViewStructure structure, int flags) {
if (editText == null) {
super.dispatchProvideAutofillStructure(structure, flags);
return;
}
if (originalHint != null) {
// Temporarily sets child's hint to its original value so it is properly set in the
// child's ViewStructure.
boolean wasProvidingHint = isProvidingHint;
// Ensures a child TextInputEditText does not retrieve its hint from this TextInputLayout.
isProvidingHint = false;
final CharSequence hint = editText.getHint();
editText.setHint(originalHint);
try {
super.dispatchProvideAutofillStructure(structure, flags);
} finally {
editText.setHint(hint);
isProvidingHint = wasProvidingHint;
}
} else {
// Pass the hint set on the outer TextInputLayout to the nested edit text to allow autofill
// services to work as intended.
structure.setAutofillId(getAutofillId());
onProvideAutofillStructure(structure, flags);
onProvideAutofillVirtualStructure(structure, flags);
structure.setChildCount(inputFrame.getChildCount());
for (int i = 0; i < inputFrame.getChildCount(); i++) {
View child = inputFrame.getChildAt(i);
ViewStructure childStructure = structure.newChild(i);
child.dispatchProvideAutofillStructure(childStructure, flags);
if (child == editText) {
childStructure.setHint(getHint());
}
}
}
}
private void setEditText(EditText editText) {
// If we already have an EditText, throw an exception
if (this.editText != null) {
throw new IllegalArgumentException("We already have an EditText, can only have one");
}
if (getEndIconMode() != END_ICON_DROPDOWN_MENU && !(editText instanceof TextInputEditText)) {
Log.i(
LOG_TAG,
"EditText added is not a TextInputEditText. Please switch to using that"
+ " class instead.");
}
this.editText = editText;
if (minEms != NO_WIDTH) {
setMinEms(minEms);
} else {
setMinWidth(minWidth);
}
if (maxEms != NO_WIDTH) {
setMaxEms(maxEms);
} else {
setMaxWidth(maxWidth);
}
boxBackgroundApplied = false;
onApplyBoxBackgroundMode();
setTextInputAccessibilityDelegate(new AccessibilityDelegate(this));
// Use the EditText's typeface, text size, and letter spacing for our expanded text.
collapsingTextHelper.setTypefaces(this.editText.getTypeface());
collapsingTextHelper.setExpandedTextSize(this.editText.getTextSize());
collapsingTextHelper.setExpandedLetterSpacing(this.editText.getLetterSpacing());
final int editTextGravity = this.editText.getGravity();
collapsingTextHelper.setCollapsedTextGravity(
Gravity.TOP | (editTextGravity & ~Gravity.VERTICAL_GRAVITY_MASK));
collapsingTextHelper.setExpandedTextGravity(editTextGravity);
originalEditTextMinimumHeight = editText.getMinimumHeight();
// Add a TextWatcher so that we know when the text input has changed.
this.editText.addTextChangedListener(
new TextWatcher() {
int previousLineCount = editText.getLineCount();
@Override
public void afterTextChanged(@NonNull Editable s) {
updateLabelState(!restoringSavedState);
if (counterEnabled) {
updateCounter(s);
}
if (placeholderEnabled) {
updatePlaceholderText(s);
}
int currentLineCount = editText.getLineCount();
if (currentLineCount != previousLineCount) {
if (currentLineCount < previousLineCount
&& editText.getMinimumHeight() != originalEditTextMinimumHeight) {
editText.setMinimumHeight(originalEditTextMinimumHeight);
}
previousLineCount = currentLineCount;
}
}
@Override
public void beforeTextChanged(CharSequence s, int start, int count, int after) {}
@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {}
});
// Use the EditText's hint colors if we don't have one set
if (defaultHintTextColor == null) {
defaultHintTextColor = this.editText.getHintTextColors();
}
// If we do not have a valid hint, try and retrieve it from the EditText, if enabled
if (hintEnabled) {
if (TextUtils.isEmpty(hint)) {
// Save the hint so it can be restored on dispatchProvideAutofillStructure();
originalHint = this.editText.getHint();
setHint(originalHint);
// Clear the EditText's hint as we will display it ourselves
this.editText.setHint(null);
}
this.isProvidingHint = true;
}
if (VERSION.SDK_INT >= VERSION_CODES.Q) {
updateCursorColor();
}
if (counterView != null) {
updateCounter(this.editText.getText());
}
updateEditTextBackground();
indicatorViewController.adjustIndicatorPadding();
startLayout.bringToFront();
endLayout.bringToFront();
dispatchOnEditTextAttached();
endLayout.updateSuffixTextViewPadding();
// Only call setEnabled on the edit text if the layout is disabled, to prevent reenabling an
// already disabled edit text.
if (!isEnabled()) {
editText.setEnabled(false);
}
// Update the label visibility with no animation, but force a state change
updateLabelState(false, true);
}
private void updateInputLayoutMargins() {
// Create/update the LayoutParams so that we can add enough top margin
// to the EditText to make room for the label.
if (boxBackgroundMode != BOX_BACKGROUND_FILLED) {
final LayoutParams lp = (LayoutParams) inputFrame.getLayoutParams();
final int newTopMargin = calculateLabelMarginTop();
if (newTopMargin != lp.topMargin) {
lp.topMargin = newTopMargin;
inputFrame.requestLayout();
}
}
}
@Override
public int getBaseline() {
if (editText != null) {
return editText.getBaseline() + getPaddingTop() + calculateLabelMarginTop();
} else {
return super.getBaseline();
}
}
void updateLabelState(boolean animate) {
updateLabelState(animate, false);
}
private void updateLabelState(boolean animate, boolean force) {
final boolean isEnabled = isEnabled();
final boolean hasText = editText != null && !TextUtils.isEmpty(editText.getText());
final boolean hasFocus = editText != null && editText.hasFocus();
// Set the expanded and collapsed labels to the default text color.
if (defaultHintTextColor != null) {
collapsingTextHelper.setCollapsedAndExpandedTextColor(defaultHintTextColor);
}
// Set the collapsed and expanded label text colors based on the current state.
if (!isEnabled) {
int disabledHintColor =
defaultHintTextColor != null
? defaultHintTextColor.getColorForState(
new int[] {-android.R.attr.state_enabled}, disabledColor)
: disabledColor;
collapsingTextHelper.setCollapsedAndExpandedTextColor(
ColorStateList.valueOf(disabledHintColor));
} else if (shouldShowError()) {
collapsingTextHelper.setCollapsedAndExpandedTextColor(
indicatorViewController.getErrorViewTextColors());
} else if (counterOverflowed && counterView != null) {
collapsingTextHelper.setCollapsedAndExpandedTextColor(counterView.getTextColors());
} else if (hasFocus && focusedTextColor != null) {
collapsingTextHelper.setCollapsedTextColor(focusedTextColor);
} // If none of these states apply, leave the expanded and collapsed colors as they are.
if (hasText || !expandedHintEnabled || (isEnabled() && hasFocus)) {
// We should be showing the label so do so if it isn't already
if (force || hintExpanded) {
collapseHint(animate);
}
} else {
// We should not be showing the label so hide it
if (force || !hintExpanded) {
expandHint(animate);
}
}
}
/** Returns the {@link android.widget.EditText} used for text input. */
@Nullable
public EditText getEditText() {
return editText;
}
/**
* Sets the minimum width in terms of ems of the text field. The layout will be at least {@code
* minEms} wide if its {@code layout_width} is set to {@code wrap_content}.
*
* @param minEms The minimum width in terms of ems to be set
* @attr ref com.google.android.material.R.styleable#TextInputLayout_android_minEms
* @see #getMinEms()
*/
public void setMinEms(int minEms) {
this.minEms = minEms;
if (editText != null && minEms != NO_WIDTH) {
editText.setMinEms(minEms);
}
}
/**
* Returns the text field's minimum width in terms of ems, or -1 if no minimum width is set.
*
* @attr ref com.google.android.material.R.styleable#TextInputLayout_android_minEms
* @see #setMinEms(int)
*/
public int getMinEms() {
return minEms;
}
/**
* Sets the maximum width in terms of ems of the text field. The layout will be at most {@code
* maxEms} wide if its {@code layout_width} is set to {@code wrap_content}.
*
* @param maxEms The maximum width in terms of ems to be set
* @attr ref com.google.android.material.R.styleable#TextInputLayout_android_maxEms
* @see #getMaxEms()
*/
public void setMaxEms(int maxEms) {
this.maxEms = maxEms;
if (editText != null && maxEms != NO_WIDTH) {
editText.setMaxEms(maxEms);
}
}
/**
* Returns the text field's maximum width in terms of ems, or -1 if no maximum width is set.
*
* @attr ref com.google.android.material.R.styleable#TextInputLayout_android_maxEms
* @see #setMaxEms(int)
*/
public int getMaxEms() {
return maxEms;
}
/**
* Sets the minimum width of the text field. The layout will be at least this dimension wide if
* its {@code layout_width} is set to {@code wrap_content}.
*
* @param minWidth The minimum width to be set
* @attr ref com.google.android.material.R.styleable#TextInputLayout_android_minWidth
* @see #setMinWidthResource(int)
* @see #getMinWidth()
*/
public void setMinWidth(@Px int minWidth) {
this.minWidth = minWidth;
if (editText != null && minWidth != NO_WIDTH) {
editText.setMinWidth(minWidth);
}
}
/**
* Sets the minimum width of the text field. The layout will be at least this dimension wide if
* its {@code layout_width} is set to {@code wrap_content}.
*
* @param minWidthId The id of the minimum width dimension resource to be set
* @attr ref com.google.android.material.R.styleable#TextInputLayout_android_minWidth
* @see #setMinWidth(int)
* @see #getMinWidth()
*/
public void setMinWidthResource(@DimenRes int minWidthId) {
setMinWidth(getContext().getResources().getDimensionPixelSize(minWidthId));
}
/**
* Returns the text field's minimum width, or -1 if no minimum width is set.
*
* @attr ref com.google.android.material.R.styleable#TextInputLayout_android_minWidth
* @see #setMinWidth(int)
* @see #setMinWidthResource(int) (int)
*/
@Px
public int getMinWidth() {
return minWidth;
}
/**
* Sets the maximum width of the text field. The layout will be at most this dimension wide if its
* {@code layout_width} is set to {@code wrap_content}.
*
* @param maxWidth The maximum width to be set
* @attr ref com.google.android.material.R.styleable#TextInputLayout_android_maxWidth
* @see #setMaxWidthResource(int)
* @see #getMaxWidth()
*/
public void setMaxWidth(@Px int maxWidth) {
this.maxWidth = maxWidth;
if (editText != null && maxWidth != NO_WIDTH) {
editText.setMaxWidth(maxWidth);
}
}
/**
* Sets the maximum width of the text field. The layout will be at most this dimension wide if its
* {@code layout_width} is set to {@code wrap_content}.
*
* @param maxWidthId The id of the maximum width dimension resource to be set
* @attr ref com.google.android.material.R.styleable#TextInputLayout_android_maxWidth
* @see #setMaxWidth(int)
* @see #getMaxWidth()
*/
public void setMaxWidthResource(@DimenRes int maxWidthId) {
setMaxWidth(getContext().getResources().getDimensionPixelSize(maxWidthId));
}
/**
* Returns the text field's maximum width, or -1 if no maximum width is set.
*
* @attr ref com.google.android.material.R.styleable#TextInputLayout_android_maxWidth
* @see #setMaxWidth(int)
* @see #setMaxWidthResource(int)
*/
@Px
public int getMaxWidth() {
return maxWidth;
}
/**
* Set the hint to be displayed in the floating label, if enabled.
*
* @see #setHintEnabled(boolean)
* @attr ref com.google.android.material.R.styleable#TextInputLayout_android_hint
*/
public void setHint(@Nullable CharSequence hint) {
if (hintEnabled) {
setHintInternal(hint);
sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_CONTENT_CHANGED);
}
}
/**
* Set the hint to be displayed in the floating label, if enabled, using the given resource id.
*
* @see #setHintEnabled(boolean)
* @see #setHint(CharSequence)
* @param textHintId The resource id of the text to display in the floating label
*/
public void setHint(@StringRes int textHintId) {
setHint(textHintId != 0 ? getResources().getText(textHintId) : null);
}
private void setHintInternal(CharSequence hint) {
if (!TextUtils.equals(hint, this.hint)) {
this.hint = hint;
collapsingTextHelper.setText(hint);
// Reset the cutout to make room for a larger hint.
if (!hintExpanded) {
openCutout();
}
}
}
/**
* Returns the hint which is displayed in the floating label, if enabled.
*
* @return the hint, or null if there isn't one set, or the hint is not enabled.
* @attr ref com.google.android.material.R.styleable#TextInputLayout_android_hint
*/
@Nullable
public CharSequence getHint() {
return hintEnabled ? hint : null;
}
/**
* Sets whether the floating label functionality is enabled or not in this layout.
*
* If enabled, any non-empty hint in the child EditText will be moved into the floating hint,
* and its existing hint will be cleared. If disabled, then any non-empty floating hint in this
* layout will be moved into the EditText, and this layout's hint will be cleared.
*
* @see #setHint(CharSequence)
* @see #isHintEnabled()
* @attr ref com.google.android.material.R.styleable#TextInputLayout_hintEnabled
*/
public void setHintEnabled(boolean enabled) {
if (enabled != hintEnabled) {
hintEnabled = enabled;
if (!hintEnabled) {
// Ensures a child TextInputEditText provides its internal hint, not this TextInputLayout's.
isProvidingHint = false;
if (!TextUtils.isEmpty(hint) && TextUtils.isEmpty(editText.getHint())) {
// If the child EditText has no hint, but this layout does, restore it on the child.
editText.setHint(hint);
}
// Now clear out any set hint
setHintInternal(null);
} else {
final CharSequence editTextHint = editText.getHint();
if (!TextUtils.isEmpty(editTextHint)) {
// If the hint is now enabled and the EditText has one set, we'll use it if
// we don't already have one, and clear the EditText's
if (TextUtils.isEmpty(hint)) {
setHint(editTextHint);
}
editText.setHint(null);
}
isProvidingHint = true;
}
// Now update the EditText top margin
if (editText != null) {
updateInputLayoutMargins();
}
}
}
/**
* Returns whether the floating label functionality is enabled or not in this layout.
*
* @see #setHintEnabled(boolean)
* @attr ref com.google.android.material.R.styleable#TextInputLayout_hintEnabled
*/
public boolean isHintEnabled() {
return hintEnabled;
}
/**
* Returns whether or not this layout is actively managing a child {@link EditText}'s hint. If the
* child is an instance of {@link TextInputEditText}, this value defines the behavior of {@link
* TextInputEditText#getHint()}.
*
* @hide
*/
@RestrictTo(LIBRARY_GROUP)
public boolean isProvidingHint() {
return isProvidingHint;
}
/**
* Sets the collapsed hint text color, size, style from the specified TextAppearance resource.
*
* @attr ref com.google.android.material.R.styleable#TextInputLayout_hintTextAppearance
*/
public void setHintTextAppearance(@StyleRes int resId) {
collapsingTextHelper.setCollapsedTextAppearance(resId);
focusedTextColor = collapsingTextHelper.getCollapsedTextColor();
if (editText != null) {
updateLabelState(false);
// Text size might have changed so update the top margin
updateInputLayoutMargins();
}
}
/**
* Sets the collapsed hint text color from the specified ColorStateList resource.
*
* @attr ref com.google.android.material.R.styleable#TextInputLayout_hintTextColor
*/
public void setHintTextColor(@Nullable ColorStateList hintTextColor) {
if (focusedTextColor != hintTextColor) {
if (defaultHintTextColor == null) {
collapsingTextHelper.setCollapsedTextColor(hintTextColor);
}
focusedTextColor = hintTextColor;
if (editText != null) {
updateLabelState(false);
}
}
}
/**
* Gets the collapsed hint text color.
*
* @attr ref com.google.android.material.R.styleable#TextInputLayout_hintTextColor
*/
@Nullable
public ColorStateList getHintTextColor() {
return focusedTextColor;
}
/** Sets the text color used by the hint in both the collapsed and expanded states. */
public void setDefaultHintTextColor(@Nullable ColorStateList textColor) {
defaultHintTextColor = textColor;
focusedTextColor = textColor;
if (editText != null) {
updateLabelState(false);
}
}
/**
* Returns the text color used by the hint in both the collapsed and expanded states, or null if
* no color has been set.
*/
@Nullable
public ColorStateList getDefaultHintTextColor() {
return defaultHintTextColor;
}
/**
* Sets the max number of lines for the hint text.
*
* @param hintMaxLines the number of lines to limit the hint text to
*/
public void setHintMaxLines(int hintMaxLines) {
collapsingTextHelper.setCollapsedMaxLines(hintMaxLines);
collapsingTextHelper.setExpandedMaxLines(hintMaxLines);
requestLayout();
}
/**
* Gets the max number of lines for the hint text.
*/
public int getHintMaxLines() {
return collapsingTextHelper.getExpandedMaxLines();
}
private boolean isHintTextSingleLine() {
return getHintMaxLines() == 1;
}
/**
* Whether the error functionality is enabled or not in this layout. Enabling this functionality
* before setting an error message via {@link #setError(CharSequence)}, will mean that this layout
* will not change size when an error is displayed.
*
* @attr ref com.google.android.material.R.styleable#TextInputLayout_errorEnabled
*/
public void setErrorEnabled(boolean enabled) {
indicatorViewController.setErrorEnabled(enabled);
}
/**
* Sets the text color and size for the error message from the specified TextAppearance resource.
*
* @attr ref com.google.android.material.R.styleable#TextInputLayout_errorTextAppearance
*/
public void setErrorTextAppearance(@StyleRes int errorTextAppearance) {
indicatorViewController.setErrorTextAppearance(errorTextAppearance);
}
/** Sets the text color used by the error message in all states. */
public void setErrorTextColor(@Nullable ColorStateList errorTextColor) {
indicatorViewController.setErrorViewTextColor(errorTextColor);
}
/** Returns the text color used by the error message in current state. */
@ColorInt
public int getErrorCurrentTextColors() {
return indicatorViewController.getErrorViewCurrentTextColor();
}
/**
* Sets the text color and size for the helper text from the specified TextAppearance resource.
*
* @attr ref com.google.android.material.R.styleable#TextInputLayout_helperTextTextAppearance
*/
public void setHelperTextTextAppearance(@StyleRes int helperTextTextAppearance) {
indicatorViewController.setHelperTextAppearance(helperTextTextAppearance);
}
/** Sets the text color used by the helper text in all states. */
public void setHelperTextColor(@Nullable ColorStateList helperTextColor) {
indicatorViewController.setHelperTextViewTextColor(helperTextColor);
}
/**
* Returns whether the error functionality is enabled or not in this layout.
*
* @attr ref com.google.android.material.R.styleable#TextInputLayout_errorEnabled
* @see #setErrorEnabled(boolean)
*/
public boolean isErrorEnabled() {
return indicatorViewController.isErrorEnabled();
}
/**
* Whether the helper text functionality is enabled or not in this layout. Enabling this
* functionality before setting a helper message via {@link #setHelperText(CharSequence)} will
* mean that this layout will not change size when a helper message is displayed.
*
* @attr ref com.google.android.material.R.styleable#TextInputLayout_helperTextEnabled
*/
public void setHelperTextEnabled(boolean enabled) {
indicatorViewController.setHelperTextEnabled(enabled);
}
/**
* Sets a helper message that will be displayed below the {@link EditText}. If the {@code helper}
* is {@code null}, the helper text functionality will be disabled and the helper message will be
* hidden.
*
* If the helper text functionality has not been enabled via {@link
* #setHelperTextEnabled(boolean)}, then it will be automatically enabled if {@code helper} is not
* empty.
*
* @param helperText Helper text to display
* @see #getHelperText()
*/
public void setHelperText(@Nullable final CharSequence helperText) {
// If helper text is null, disable helper if it's enabled.
if (TextUtils.isEmpty(helperText)) {
if (isHelperTextEnabled()) {
setHelperTextEnabled(false);
}
} else {
if (!isHelperTextEnabled()) {
setHelperTextEnabled(true);
}
indicatorViewController.showHelper(helperText);
}
}
/**
* Returns whether the helper text functionality is enabled or not in this layout.
*
* @attr ref com.google.android.material.R.styleable#TextInputLayout_helperTextEnabled
* @see #setHelperTextEnabled(boolean)
*/
public boolean isHelperTextEnabled() {
return indicatorViewController.isHelperTextEnabled();
}
/** Returns the text color used by the helper text in the current states. */
@ColorInt
public int getHelperTextCurrentTextColor() {
return indicatorViewController.getHelperTextViewCurrentTextColor();
}
/**
* Sets a content description for the error message.
*
* A content description should be set when the error message contains special characters that
* screen readers or other accessibility systems are not able to read, so that they announce the
* content description instead.
*
* @param errorContentDescription Content description to set, or null to clear it
* @attr ref com.google.android.material.R.styleable#TextInputLayout_errorContentDescription
*/
public void setErrorContentDescription(@Nullable final CharSequence errorContentDescription) {
indicatorViewController.setErrorContentDescription(errorContentDescription);
}
/**
* Returns the content description of the error message, or null if not set.
*
* @see #setErrorContentDescription(CharSequence)
*/
@Nullable
public CharSequence getErrorContentDescription() {
return indicatorViewController.getErrorContentDescription();
}
/**
* Sets an accessibility live region for the error message.
*
* @param errorAccessibilityLiveRegion Accessibility live region to set
* @attr ref com.google.android.material.R.styleable#TextInputLayout_errorAccessibilityLiveRegion
*/
public void setErrorAccessibilityLiveRegion(final int errorAccessibilityLiveRegion) {
indicatorViewController.setErrorAccessibilityLiveRegion(errorAccessibilityLiveRegion);
}
/**
* Returns the accessibility live region of the error message.
*
* @see #setErrorAccessibilityLiveRegion(int)
*/
public int getErrorAccessibilityLiveRegion() {
return indicatorViewController.getErrorAccessibilityLiveRegion();
}
/**
* Sets an error message that will be displayed below our {@link EditText}. If the {@code error}
* is {@code null}, the error message will be cleared.
*
* If the error functionality has not been enabled via {@link #setErrorEnabled(boolean)}, then
* it will be automatically enabled if {@code error} is not empty.
*
* @param errorText Error message to display, or null to clear
* @see #getError()
*/
public void setError(@Nullable final CharSequence errorText) {
if (!indicatorViewController.isErrorEnabled()) {
if (TextUtils.isEmpty(errorText)) {
// If error isn't enabled, and the error is empty, just return
return;
}
// Else, we'll assume that they want to enable the error functionality
setErrorEnabled(true);
}
if (!TextUtils.isEmpty(errorText)) {
indicatorViewController.showError(errorText);
} else {
indicatorViewController.hideError();
}
}
/**
* Set the drawable to use for the error icon.
*
* @param resId resource id of the drawable to set, or 0 to clear the icon
* @attr ref com.google.android.material.R.styleable#TextInputLayout_errorIconDrawable
*/
public void setErrorIconDrawable(@DrawableRes int resId) {
endLayout.setErrorIconDrawable(resId);
}
/**
* Set the drawable to use for the error icon.
*
* @param errorIconDrawable Drawable to set, may be null to clear the icon
* @attr ref com.google.android.material.R.styleable#TextInputLayout_errorIconDrawable
*/
public void setErrorIconDrawable(@Nullable Drawable errorIconDrawable) {
endLayout.setErrorIconDrawable(errorIconDrawable);
}
/**
* Returns the drawable currently used for the error icon.
*
* @see #setErrorIconDrawable(Drawable)
* @attr ref com.google.android.material.R.styleable#TextInputLayout_errorIconDrawable
*/
@Nullable
public Drawable getErrorIconDrawable() {
return endLayout.getErrorIconDrawable();
}
/**
* Applies a tint to the error icon drawable.
*
* @param errorIconTintList the tint to apply, may be null to clear tint
* @attr ref com.google.android.material.R.styleable#TextInputLayout_errorIconTint
*/
public void setErrorIconTintList(@Nullable ColorStateList errorIconTintList) {
endLayout.setErrorIconTintList(errorIconTintList);
}
/**
* Specifies the blending mode used to apply tint to the end icon drawable. The default mode is
* {@link PorterDuff.Mode#SRC_IN}.
*
* @param errorIconTintMode the blending mode used to apply the tint, may be null to clear tint
* @attr ref com.google.android.material.R.styleable#TextInputLayout_errorIconTintMode
*/
public void setErrorIconTintMode(@Nullable PorterDuff.Mode errorIconTintMode) {
endLayout.setErrorIconTintMode(errorIconTintMode);
}
/**
* Whether the character counter functionality is enabled or not in this layout.
*
* @attr ref com.google.android.material.R.styleable#TextInputLayout_counterEnabled
*/
public void setCounterEnabled(boolean enabled) {
if (counterEnabled != enabled) {
if (enabled) {
counterView = new AppCompatTextView(getContext());
counterView.setId(R.id.textinput_counter);
if (typeface != null) {
counterView.setTypeface(typeface);
}
counterView.setMaxLines(1);
indicatorViewController.addIndicator(counterView, COUNTER_INDEX);
((MarginLayoutParams) counterView.getLayoutParams()).setMarginStart(
getResources().getDimensionPixelOffset(R.dimen.mtrl_textinput_counter_margin_start));
updateCounterTextAppearanceAndColor();
updateCounter();
} else {
indicatorViewController.removeIndicator(counterView, COUNTER_INDEX);
counterView = null;
}
counterEnabled = enabled;
}
}
/**
* Sets the text color and size for the character counter using the specified TextAppearance
* resource.
*
* @attr ref com.google.android.material.R.styleable#TextInputLayout_counterTextAppearance
* @see #setCounterTextColor(ColorStateList)
*/
public void setCounterTextAppearance(int counterTextAppearance) {
if (this.counterTextAppearance != counterTextAppearance) {
this.counterTextAppearance = counterTextAppearance;
updateCounterTextAppearanceAndColor();
}
}
/**
* Sets the text color for the character counter using a ColorStateList.
*
* This text color takes precedence over a text color set in counterTextAppearance.
*
* @attr ref com.google.android.material.R.styleable#TextInputLayout_counterTextColor
* @param counterTextColor text color used for the character counter
*/
public void setCounterTextColor(@Nullable ColorStateList counterTextColor) {
if (this.counterTextColor != counterTextColor) {
this.counterTextColor = counterTextColor;
updateCounterTextAppearanceAndColor();
}
}
/**
* Returns the text color used for the character counter, or null if one has not been set.
*
* @attr ref com.google.android.material.R.styleable#TextInputLayout_counterTextColor
* @see #setCounterTextColor(ColorStateList)
* @return the text color used for the character counter
*/
@Nullable
public ColorStateList getCounterTextColor() {
return counterTextColor;
}
/**
* Sets the text color and size for the overflowed character counter using the specified
* TextAppearance resource.
*
* @attr ref com.google.android.material.R.styleable#TextInputLayout_counterOverflowTextAppearance
* @see #setCounterOverflowTextColor(ColorStateList)
*/
public void setCounterOverflowTextAppearance(int counterOverflowTextAppearance) {
if (this.counterOverflowTextAppearance != counterOverflowTextAppearance) {
this.counterOverflowTextAppearance = counterOverflowTextAppearance;
updateCounterTextAppearanceAndColor();
}
}
/**
* Sets the text color for the overflowed character counter using a ColorStateList.
*
* This text color takes precedence over a text color set in counterOverflowTextAppearance.
*
* @see #setCounterOverflowTextAppearance(int)
* @attr ref com.google.android.material.R.styleable#TextInputLayout_counterOverflowTextColor
* @param counterOverflowTextColor the text color used for the overflowed character counter
*/
public void setCounterOverflowTextColor(@Nullable ColorStateList counterOverflowTextColor) {
if (this.counterOverflowTextColor != counterOverflowTextColor) {
this.counterOverflowTextColor = counterOverflowTextColor;
updateCounterTextAppearanceAndColor();
}
}
/**
* Returns the text color used for the overflowed character counter, or null if one has not been
* set.
*
* @attr ref com.google.android.material.R.styleable#TextInputLayout_counterOverflowTextColor
* @see #setCounterOverflowTextAppearance(int)
* @return the text color used for the overflowed character counter
*/
@Nullable
public ColorStateList getCounterOverflowTextColor() {
return counterOverflowTextColor;
}
/**
* Returns whether the character counter functionality is enabled or not in this layout.
*
* @attr ref com.google.android.material.R.styleable#TextInputLayout_counterEnabled
* @see #setCounterEnabled(boolean)
*/
public boolean isCounterEnabled() {
return counterEnabled;
}
/**
* Sets the max length to display at the character counter.
*
* @param maxLength maxLength to display. Any value less than or equal to 0 will not be shown.
* @attr ref com.google.android.material.R.styleable#TextInputLayout_counterMaxLength
*/
public void setCounterMaxLength(int maxLength) {
if (counterMaxLength != maxLength) {
if (maxLength > 0) {
counterMaxLength = maxLength;
} else {
counterMaxLength = INVALID_MAX_LENGTH;
}
if (counterEnabled) {
updateCounter();
}
}
}
private void updateCounter() {
if (counterView != null) {
updateCounter(editText == null ? null : editText.getText());
}
}
void updateCounter(@Nullable Editable text) {
int length = lengthCounter.countLength(text);
boolean wasCounterOverflowed = counterOverflowed;
if (counterMaxLength == INVALID_MAX_LENGTH) {
counterView.setText(String.valueOf(length));
counterView.setContentDescription(null);
counterOverflowed = false;
} else {
counterOverflowed = length > counterMaxLength;
updateCounterContentDescription(
getContext(), counterView, length, counterMaxLength, counterOverflowed);
if (wasCounterOverflowed != counterOverflowed) {
updateCounterTextAppearanceAndColor();
}
BidiFormatter bidiFormatter = BidiFormatter.getInstance();
counterView.setText(
bidiFormatter.unicodeWrap(
getContext()
.getString(R.string.character_counter_pattern, length, counterMaxLength)));
}
if (editText != null && wasCounterOverflowed != counterOverflowed) {
updateLabelState(false);
updateTextInputBoxState();
updateEditTextBackground();
}
}
private static void updateCounterContentDescription(
@NonNull Context context,
@NonNull TextView counterView,
int length,
int counterMaxLength,
boolean counterOverflowed) {
counterView.setContentDescription(
context.getString(
counterOverflowed
? R.string.character_counter_overflowed_content_description
: R.string.character_counter_content_description,
length,
counterMaxLength));
}
/**
* Sets placeholder text that will be displayed in the input area when the hint is collapsed
* before text is entered. If the {@code placeholder} is {@code null}, any previous placeholder
* text will be hidden and no placeholder text will be shown.
*
* @param placeholderText Placeholder text to display
* @see #getPlaceholderText()
*/
public void setPlaceholderText(@Nullable final CharSequence placeholderText) {
if (placeholderTextView == null) {
placeholderTextView = new AppCompatTextView(getContext());
placeholderTextView.setId(R.id.textinput_placeholder);
placeholderTextView.setImportantForAccessibility(View.IMPORTANT_FOR_ACCESSIBILITY_YES);
placeholderTextView.setAccessibilityLiveRegion(ViewCompat.ACCESSIBILITY_LIVE_REGION_POLITE);
placeholderFadeIn = createPlaceholderFadeTransition();
placeholderFadeIn.setStartDelay(PLACEHOLDER_START_DELAY);
placeholderFadeOut = createPlaceholderFadeTransition();
setPlaceholderTextAppearance(placeholderTextAppearance);
setPlaceholderTextColor(placeholderTextColor);
ViewCompat.setAccessibilityDelegate(
placeholderTextView,
new AccessibilityDelegateCompat() {
@Override
public void onInitializeAccessibilityNodeInfo(
@NonNull View host, @NonNull AccessibilityNodeInfoCompat info) {
super.onInitializeAccessibilityNodeInfo(host, info);
info.setVisibleToUser(false);
}
});
}
// If placeholder text is null, disable placeholder.
if (TextUtils.isEmpty(placeholderText)) {
setPlaceholderTextEnabled(false);
} else {
if (!placeholderEnabled) {
// Enable the placeholder if it isn't already.
setPlaceholderTextEnabled(true);
}
this.placeholderText = placeholderText;
}
updatePlaceholderText();
}
/**
* Returns the placeholder text that was set to be displayed with {@link
* #setPlaceholderText(CharSequence)}, or Note: This method only has effect on API levels 28+. On lower API levels
* {@code ?attr/colorControlActivated} will be used for the cursor color.
*
* @param cursorColor the cursor color to be set
* @see #getCursorColor
* @see #setCursorErrorColor
* @attr ref com.google.android.material.R.styleable#TextInputLayout_cursorColor
*/
@RequiresApi(VERSION_CODES.Q)
public void setCursorColor(@Nullable ColorStateList cursorColor) {
if (this.cursorColor != cursorColor) {
this.cursorColor = cursorColor;
updateCursorColor();
}
}
/**
* Returns the cursor color. It will return the value of {@code app:cursorColor} if set, or
* Note: This value only has effect on API levels 28+. On lower API levels
* {@code ?attr/colorControlActivated} will be used for the cursor color.
*
* @see #setCursorColor
* @attr ref com.google.android.material.R.styleable#TextInputLayout_cursorColor
*/
@Nullable
@RequiresApi(VERSION_CODES.Q)
public ColorStateList getCursorColor() {
return cursorColor;
}
/**
* Sets the cursor color when an error is being displayed. If null, the cursor doesn't change its
* color when the text field is in an error state.
*
* Note: This method only has effect on API levels 28+. On lower API levels
* {@code ?attr/colorControlActivated} will be used for the cursor color.
*
* @param cursorErrorColor the error color to use for the cursor
* @see #getCursorErrorColor
* @see #setCursorColor
* @see #setError(CharSequence)
* @attr ref com.google.android.material.R.styleable#TextInputLayout_cursorErrorColor
*/
@RequiresApi(VERSION_CODES.Q)
public void setCursorErrorColor(@Nullable ColorStateList cursorErrorColor) {
if (this.cursorErrorColor != cursorErrorColor) {
this.cursorErrorColor = cursorErrorColor;
if (isOnError()) {
updateCursorColor();
}
}
}
/**
* Returns the cursor error color.
*
* Note: This value only has effect on API levels 28+. On lower API levels
* {@code ?attr/colorControlActivated} will be used for the cursor color.
*
* @see #setCursorErrorColor
* @attr ref com.google.android.material.R.styleable#TextInputLayout_cursorErrorColor
*/
@Nullable
@RequiresApi(VERSION_CODES.Q)
public ColorStateList getCursorErrorColor() {
return cursorErrorColor;
}
/**
* Sets prefix text that will be displayed in the input area when the hint is collapsed before
* text is entered. If the {@code prefix} is {@code null}, any previous prefix text will be hidden
* and no prefix text will be shown.
*
* @param prefixText Prefix text to display
* @see #getPrefixText()
*/
public void setPrefixText(@Nullable final CharSequence prefixText) {
startLayout.setPrefixText(prefixText);
}
/**
* Returns the prefix text that was set to be displayed with {@link #setPrefixText(CharSequence)},
* or Note: In order for the prefix to work correctly, text should always be set only via {@link
* #setPrefixText(CharSequence)}, instead of on the {@link TextView} directly.
*
* @see #setPrefixText(CharSequence)
*/
@NonNull
public TextView getPrefixTextView() {
return startLayout.getPrefixTextView();
}
/**
* Sets the text color used by the prefix text in all states.
*
* @attr ref com.google.android.material.R.styleable#TextInputLayout_prefixTextColor
*/
public void setPrefixTextColor(@NonNull ColorStateList prefixTextColor) {
startLayout.setPrefixTextColor(prefixTextColor);
}
/**
* Returns the ColorStateList used for the prefix text.
*
* @attr ref com.google.android.material.R.styleable#TextInputLayout_prefixTextColor
*/
@Nullable
public ColorStateList getPrefixTextColor() {
return startLayout.getPrefixTextColor();
}
/**
* Sets the text color and size for the prefix text from the specified TextAppearance resource.
*
* @attr ref com.google.android.material.R.styleable#TextInputLayout_prefixTextAppearance
*/
public void setPrefixTextAppearance(@StyleRes int prefixTextAppearance) {
startLayout.setPrefixTextAppearance(prefixTextAppearance);
}
/**
* Sets suffix text that will be displayed in the input area when the hint is collapsed before
* text is entered. If the {@code suffix} is {@code null}, any previous suffix text will be hidden
* and no suffix text will be shown.
*
* @param suffixText Suffix text to display
* @see #getSuffixText()
*/
public void setSuffixText(@Nullable final CharSequence suffixText) {
endLayout.setSuffixText(suffixText);
}
/**
* Returns the suffix text that was set to be displayed with {@link #setSuffixText(CharSequence)},
* or Note: In order for the suffix to work correctly, text should always be set only via {@link
* #setSuffixText(CharSequence)}, instead of on the {@link TextView} directly.
*
* @see #setSuffixText(CharSequence)
*/
@NonNull
public TextView getSuffixTextView() {
return endLayout.getSuffixTextView();
}
/**
* Sets the text color used by the suffix text in all states.
*
* @attr ref com.google.android.material.R.styleable#TextInputLayout_suffixTextColor
*/
public void setSuffixTextColor(@NonNull ColorStateList suffixTextColor) {
endLayout.setSuffixTextColor(suffixTextColor);
}
/**
* Returns the ColorStateList used for the suffix text.
*
* @attr ref com.google.android.material.R.styleable#TextInputLayout_suffixTextColor
*/
@Nullable
public ColorStateList getSuffixTextColor() {
return endLayout.getSuffixTextColor();
}
/**
* Sets the text color and size for the suffix text from the specified TextAppearance resource.
*
* @attr ref com.google.android.material.R.styleable#TextInputLayout_suffixTextAppearance
*/
public void setSuffixTextAppearance(@StyleRes int suffixTextAppearance) {
endLayout.setSuffixTextAppearance(suffixTextAppearance);
}
@Override
public void setEnabled(boolean enabled) {
// Since we're set to addStatesFromChildren, we need to make sure that we set all
// children to enabled/disabled otherwise any enabled children will wipe out our disabled
// drawable state
recursiveSetEnabled(this, enabled);
super.setEnabled(enabled);
}
private static void recursiveSetEnabled(@NonNull final ViewGroup vg, final boolean enabled) {
for (int i = 0, count = vg.getChildCount(); i < count; i++) {
final View child = vg.getChildAt(i);
child.setEnabled(enabled);
if (child instanceof ViewGroup) {
recursiveSetEnabled((ViewGroup) child, enabled);
}
}
}
/**
* Returns the max length shown at the character counter.
*
* @attr ref com.google.android.material.R.styleable#TextInputLayout_counterMaxLength
*/
public int getCounterMaxLength() {
return counterMaxLength;
}
/**
* Returns the {@code contentDescription} for accessibility purposes of the counter view, or
* {@code null} if the counter is not enabled, not overflowed, or has no description.
*/
@Nullable
CharSequence getCounterOverflowDescription() {
if (counterEnabled && counterOverflowed && (counterView != null)) {
return counterView.getContentDescription();
}
return null;
}
private void updateCounterTextAppearanceAndColor() {
if (counterView != null) {
setTextAppearanceCompatWithErrorFallback(
counterView, counterOverflowed ? counterOverflowTextAppearance : counterTextAppearance);
if (!counterOverflowed && counterTextColor != null) {
counterView.setTextColor(counterTextColor);
}
if (counterOverflowed && counterOverflowTextColor != null) {
counterView.setTextColor(counterOverflowTextColor);
}
}
}
void setTextAppearanceCompatWithErrorFallback(
@NonNull TextView textView, @StyleRes int textAppearance) {
boolean useDefaultColor = false;
try {
TextViewCompat.setTextAppearance(textView, textAppearance);
if (VERSION.SDK_INT >= VERSION_CODES.M
&& textView.getTextColors().getDefaultColor() == Color.MAGENTA) {
// Caused by our theme not extending from Theme.Design*. On API 23 and
// above, unresolved theme attrs result in MAGENTA rather than an exception.
// Flag so that we use a decent default
useDefaultColor = true;
}
} catch (Exception e) {
// Caused by our theme not extending from Theme.Design*. Flag so that we use
// a decent default
useDefaultColor = true;
}
if (useDefaultColor) {
// Probably caused by our theme not extending from Theme.Design*. Instead
// we manually set something appropriate
TextViewCompat.setTextAppearance(
textView, androidx.appcompat.R.style.TextAppearance_AppCompat_Caption);
textView.setTextColor(ContextCompat.getColor(getContext(), R.color.design_error));
}
}
private int calculateLabelMarginTop() {
if (!hintEnabled) {
return 0;
}
switch (boxBackgroundMode) {
case BOX_BACKGROUND_OUTLINE:
if (isHintTextSingleLine()) {
return (int) (collapsingTextHelper.getCollapsedTextHeight() / 2);
}
return Math.max(
0,
(int)
(collapsingTextHelper.getCollapsedTextHeight()
- collapsingTextHelper.getCollapsedSingleLineHeight() / 2));
case BOX_BACKGROUND_NONE:
return (int) collapsingTextHelper.getCollapsedTextHeight();
case BOX_BACKGROUND_FILLED:
default:
return 0;
}
}
@NonNull
private Rect calculateCollapsedTextBounds(@NonNull Rect rect) {
if (editText == null) {
throw new IllegalStateException();
}
Rect bounds = tmpBoundsRect;
boolean isRtl = ViewUtils.isLayoutRtl(this);
bounds.bottom = rect.bottom;
switch (boxBackgroundMode) {
case BOX_BACKGROUND_OUTLINE:
bounds.left = rect.left + editText.getPaddingLeft();
bounds.top = rect.top - calculateLabelMarginTop();
bounds.right = rect.right - editText.getPaddingRight();
return bounds;
case BOX_BACKGROUND_FILLED:
bounds.left = getLabelLeftBoundAlignedWithPrefixAndSuffix(rect.left, isRtl);
bounds.top = rect.top + boxCollapsedPaddingTopPx;
bounds.right = getLabelRightBoundAlignedWithPrefixAndSuffix(rect.right, isRtl);
return bounds;
case BOX_BACKGROUND_NONE:
default:
bounds.left = getLabelLeftBoundAlignedWithPrefixAndSuffix(rect.left, isRtl);
bounds.top = getPaddingTop();
bounds.right = getLabelRightBoundAlignedWithPrefixAndSuffix(rect.right, isRtl);
return bounds;
}
}
private int getLabelLeftBoundAlignedWithPrefixAndSuffix(int rectLeft, boolean isRtl) {
if (!isRtl && getPrefixText() != null) {
return rectLeft + startLayout.getPrefixTextStartOffset();
}
if (isRtl && getSuffixText() != null) {
return rectLeft + endLayout.getSuffixTextEndOffset();
}
return rectLeft + editText.getCompoundPaddingLeft();
}
private int getLabelRightBoundAlignedWithPrefixAndSuffix(int rectRight, boolean isRtl) {
if (!isRtl && getSuffixText() != null) {
return rectRight - endLayout.getSuffixTextEndOffset();
}
if (isRtl && getPrefixText() != null) {
return rectRight - startLayout.getPrefixTextStartOffset();
}
return rectRight - editText.getCompoundPaddingRight();
}
@NonNull
private Rect calculateExpandedTextBounds(@NonNull Rect rect) {
if (editText == null) {
throw new IllegalStateException();
}
Rect bounds = tmpBoundsRect;
float labelHeight =
isHintTextSingleLine()
? collapsingTextHelper.getExpandedTextSingleLineHeight()
: collapsingTextHelper.getExpandedTextFullSingleLineHeight()
* collapsingTextHelper.getExpandedLineCount();
bounds.left = rect.left + editText.getCompoundPaddingLeft();
bounds.top = calculateExpandedLabelTop(rect, labelHeight);
bounds.right = rect.right - editText.getCompoundPaddingRight();
bounds.bottom = calculateExpandedLabelBottom(rect, bounds, labelHeight);
return bounds;
}
private int calculateExpandedLabelTop(@NonNull Rect rect, float labelHeight) {
if (isSingleLineFilledTextField()) {
return (int) (rect.centerY() - labelHeight / 2);
}
int bottomLineSpacing =
boxBackgroundMode == BOX_BACKGROUND_NONE && !isHintTextSingleLine()
? (int) (collapsingTextHelper.getExpandedTextSingleLineHeight() / 2)
: 0;
return rect.top + editText.getCompoundPaddingTop() - bottomLineSpacing;
}
private int calculateExpandedLabelBottom(
@NonNull Rect rect, @NonNull Rect bounds, float labelHeight) {
if (isSingleLineFilledTextField()) {
// Add the label's height to the top of the bounds rather than calculating from the vertical
// center for both the top and bottom of the label. This prevents a potential fractional loss
// of label height caused by the float to int conversion.
return (int) (bounds.top + labelHeight);
}
return rect.bottom - editText.getCompoundPaddingBottom();
}
private boolean isSingleLineFilledTextField() {
return boxBackgroundMode == BOX_BACKGROUND_FILLED && editText.getMinLines() <= 1;
}
/*
* Calculates the box background color that should be set.
*
* The filled text field has a surface layer with value {@code ?attr/colorSurface} underneath its
* background that is taken into account when calculating the background color.
*/
private int calculateBoxBackgroundColor() {
int backgroundColor = boxBackgroundColor;
if (boxBackgroundMode == BOX_BACKGROUND_FILLED) {
int surfaceLayerColor = MaterialColors.getColor(this, R.attr.colorSurface, Color.TRANSPARENT);
backgroundColor = MaterialColors.layer(surfaceLayerColor, boxBackgroundColor);
}
return backgroundColor;
}
private void applyBoxAttributes() {
if (boxBackground == null) {
return;
}
if (boxBackground.getShapeAppearanceModel() != shapeAppearanceModel) {
boxBackground.setShapeAppearanceModel(shapeAppearanceModel);
}
if (canDrawOutlineStroke()) {
boxBackground.setStroke(boxStrokeWidthPx, boxStrokeColor);
}
boxBackgroundColor = calculateBoxBackgroundColor();
boxBackground.setFillColor(ColorStateList.valueOf(boxBackgroundColor));
applyBoxUnderlineAttributes();
updateEditTextBoxBackgroundIfNeeded();
}
private void applyBoxUnderlineAttributes() {
// Exit if the underline is not being drawn by TextInputLayout.
if (boxUnderlineDefault == null || boxUnderlineFocused == null) {
return;
}
if (canDrawStroke()) {
// If the edit text is focused, set boxUnderlineDefault to defaultStrokeColor to use it as the
// backdrop for the focused underline expansion.
boxUnderlineDefault.setFillColor(
editText.isFocused()
? ColorStateList.valueOf(defaultStrokeColor)
: ColorStateList.valueOf(boxStrokeColor));
boxUnderlineFocused.setFillColor(ColorStateList.valueOf(boxStrokeColor));
}
invalidate();
}
private boolean canDrawOutlineStroke() {
return boxBackgroundMode == BOX_BACKGROUND_OUTLINE && canDrawStroke();
}
private boolean canDrawStroke() {
return boxStrokeWidthPx > -1 && boxStrokeColor != Color.TRANSPARENT;
}
void updateEditTextBackground() {
// Only update the color filter for the legacy text field, since we can directly change the
// Paint colors of the MaterialShapeDrawable box background without having to use color filters.
if (editText == null || boxBackgroundMode != BOX_BACKGROUND_NONE) {
return;
}
Drawable editTextBackground = editText.getBackground();
if (editTextBackground == null) {
return;
}
if (androidx.appcompat.widget.DrawableUtils.canSafelyMutateDrawable(editTextBackground)) {
editTextBackground = editTextBackground.mutate();
}
if (shouldShowError()) {
// Set a color filter for the error color
editTextBackground.setColorFilter(
AppCompatDrawableManager.getPorterDuffColorFilter(
getErrorCurrentTextColors(), PorterDuff.Mode.SRC_IN));
} else if (counterOverflowed && counterView != null) {
// Set a color filter of the counter color
editTextBackground.setColorFilter(
AppCompatDrawableManager.getPorterDuffColorFilter(
counterView.getCurrentTextColor(), PorterDuff.Mode.SRC_IN));
} else {
// Else reset the color filter and refresh the drawable state so that the
// normal tint is used
DrawableCompat.clearColorFilter(editTextBackground);
editText.refreshDrawableState();
}
}
boolean shouldShowError() {
return indicatorViewController.errorShouldBeShown();
}
static class SavedState extends AbsSavedState {
@Nullable CharSequence error;
boolean isEndIconChecked;
SavedState(Parcelable superState) {
super(superState);
}
SavedState(@NonNull Parcel source, ClassLoader loader) {
super(source, loader);
error = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(source);
isEndIconChecked = (source.readInt() == 1);
}
@Override
public void writeToParcel(@NonNull Parcel dest, int flags) {
super.writeToParcel(dest, flags);
TextUtils.writeToParcel(error, dest, flags);
dest.writeInt(isEndIconChecked ? 1 : 0);
}
@NonNull
@Override
public String toString() {
return "TextInputLayout.SavedState{"
+ Integer.toHexString(System.identityHashCode(this))
+ " error="
+ error
+ "}";
}
public static final Creator If you use an icon you should also set a description for its action using {@link
* #setStartIconContentDescription(CharSequence)}. This is used for accessibility.
*
* @param resId resource id of the drawable to set, or 0 to clear and remove the icon
* @attr ref com.google.android.material.R.styleable#TextInputLayout_startIconDrawable
*/
public void setStartIconDrawable(@DrawableRes int resId) {
setStartIconDrawable(resId != 0 ? AppCompatResources.getDrawable(getContext(), resId) : null);
}
/**
* Sets the start icon.
*
* If you use an icon you should also set a description for its action using {@link
* #setStartIconContentDescription(CharSequence)}. This is used for accessibility.
*
* @param startIconDrawable Drawable to set, may be null to clear and remove the icon
* @attr ref com.google.android.material.R.styleable#TextInputLayout_startIconDrawable
*/
public void setStartIconDrawable(@Nullable Drawable startIconDrawable) {
startLayout.setStartIconDrawable(startIconDrawable);
}
/**
* Returns the start icon.
*
* @see #setStartIconDrawable(Drawable)
* @return the drawable used for the start icon
* @attr ref com.google.android.material.R.styleable#TextInputLayout_startIconDrawable
*/
@Nullable
public Drawable getStartIconDrawable() {
return startLayout.getStartIconDrawable();
}
/**
* Sets the width and height of the start icon.
*
* @param iconSize new dimension for width and height of the start icon in pixels.
* @attr ref android.support.design.button.R.styleable#TextInputLayout_startIconSize
* @see #getStartIconMinSize()
*/
public void setStartIconMinSize(@IntRange(from = 0) int iconSize) {
startLayout.setStartIconMinSize(iconSize);
}
/**
* Returns the size of the start icon.
*
* @return Returns the size of the start icon in pixels.
* @attr ref android.support.design.button.R.styleable#TextInputLayout_startIconSize
* @see #setStartIconMinSize(int)
*/
public int getStartIconMinSize() {
return startLayout.getStartIconMinSize();
}
/**
* Sets the start icon's functionality that is performed when the start icon is clicked. The icon
* will not be clickable if its click and long click listeners are null.
*
* @param startIconOnClickListener the {@link android.view.View.OnClickListener} the start icon
* view will have, or null to clear it.
*/
public void setStartIconOnClickListener(@Nullable OnClickListener startIconOnClickListener) {
startLayout.setStartIconOnClickListener(startIconOnClickListener);
}
/**
* Sets the start icon's functionality that is performed when the start icon is long clicked. The
* icon will not be clickable if its click and long click listeners are null.
*
* @param startIconOnLongClickListener the {@link android.view.View.OnLongClickListener} the start
* icon view will have, or null to clear it.
*/
public void setStartIconOnLongClickListener(
@Nullable OnLongClickListener startIconOnLongClickListener) {
startLayout.setStartIconOnLongClickListener(startIconOnLongClickListener);
}
/**
* Sets the start icon to be VISIBLE or GONE.
*
* @param visible whether the icon should be set to visible
*/
public void setStartIconVisible(boolean visible) {
startLayout.setStartIconVisible(visible);
}
/**
* Returns whether the current start icon is visible.
*
* @see #setStartIconVisible(boolean)
*/
public boolean isStartIconVisible() {
return startLayout.isStartIconVisible();
}
/**
* This method should be called from within your icon's click listener if your icon's tint list
* has a color for a state that depends on a click (such as checked state).
*/
public void refreshStartIconDrawableState() {
startLayout.refreshStartIconDrawableState();
}
/**
* Sets the current start icon to be checkable or not.
*
* If the icon works just as a button and the fact that it's checked or not doesn't affect its
* behavior, such as the clear text end icon, calling this method is encouraged so that screen
* readers will not announce the icon's checked state.
*
* @param startIconCheckable whether the icon should be checkable
* @attr ref com.google.android.material.R.styleable#TextInputLayout_startIconCheckable
*/
public void setStartIconCheckable(boolean startIconCheckable) {
startLayout.setStartIconCheckable(startIconCheckable);
}
/**
* Returns whether the start icon is checkable.
*
* @see #setStartIconCheckable(boolean)
*/
public boolean isStartIconCheckable() {
return startLayout.isStartIconCheckable();
}
/**
* Set a content description for the start icon.
*
* The content description will be read via screen readers or other accessibility systems to
* explain the purpose or action of the icon.
*
* @param resId Resource ID of a content description string to set, or 0 to clear the description
* @attr ref com.google.android.material.R.styleable#TextInputLayout_startIconContentDescription
*/
public void setStartIconContentDescription(@StringRes int resId) {
setStartIconContentDescription(resId != 0 ? getResources().getText(resId) : null);
}
/**
* Set a content description for the start icon.
*
* The content description will be read via screen readers or other accessibility systems to
* explain the purpose or action of the icon.
*
* @param startIconContentDescription Content description to set, or null to clear the content
* description
* @attr ref com.google.android.material.R.styleable#TextInputLayout_startIconContentDescription
*/
public void setStartIconContentDescription(@Nullable CharSequence startIconContentDescription) {
startLayout.setStartIconContentDescription(startIconContentDescription);
}
/**
* Returns the currently configured content description for the start icon.
*
* This will be used to describe the navigation action to users through mechanisms such as
* screen readers.
*/
@Nullable
public CharSequence getStartIconContentDescription() {
return startLayout.getStartIconContentDescription();
}
/**
* Applies a tint to the start icon drawable. Does not modify the current tint mode, which is
* {@link PorterDuff.Mode#SRC_IN} by default.
*
* Subsequent calls to {@link #setStartIconDrawable(Drawable)} will automatically mutate the
* drawable and apply the specified tint and tint mode using {@link
* Drawable#setTintList(ColorStateList)}.
*
* @param startIconTintList the tint to apply, may be null to clear tint
* @attr ref com.google.android.material.R.styleable#TextInputLayout_startIconTint
*/
public void setStartIconTintList(@Nullable ColorStateList startIconTintList) {
startLayout.setStartIconTintList(startIconTintList);
}
/**
* Specifies the blending mode used to apply the tint specified by {@link
* #setEndIconTintList(ColorStateList)} to the start icon drawable. The default mode is {@link
* PorterDuff.Mode#SRC_IN}.
*
* @param startIconTintMode the blending mode used to apply the tint, may be null to clear tint
* @attr ref com.google.android.material.R.styleable#TextInputLayout_startIconTintMode
*/
public void setStartIconTintMode(@Nullable PorterDuff.Mode startIconTintMode) {
startLayout.setStartIconTintMode(startIconTintMode);
}
/**
* Set up the end icon mode. When set, a button is placed at the end of the EditText which enables
* the user to perform the specific icon's functionality.
*
* @param endIconMode the end icon mode to be set: {@link #END_ICON_PASSWORD_TOGGLE}, {@link
* #END_ICON_CLEAR_TEXT}, or {@link #END_ICON_CUSTOM}; or {@link #END_ICON_NONE} to clear the
* current icon if any
* @attr ref com.google.android.material.R.styleable#TextInputLayout_endIconMode
*/
public void setEndIconMode(@EndIconMode int endIconMode) {
endLayout.setEndIconMode(endIconMode);
}
/**
* Returns the current end icon mode.
*
* @return the end icon mode enum
* @see #setEndIconMode(int)
* @attr ref com.google.android.material.R.styleable#TextInputLayout_endIconMode
*/
@EndIconMode
public int getEndIconMode() {
return endLayout.getEndIconMode();
}
/**
* Sets the end icon's functionality that is performed when the icon is clicked. The icon will not
* be clickable if its click and long click listeners are null.
*
* @param endIconOnClickListener the {@link android.view.View.OnClickListener} the end icon view
* will have
*/
public void setEndIconOnClickListener(@Nullable OnClickListener endIconOnClickListener) {
endLayout.setEndIconOnClickListener(endIconOnClickListener);
}
/**
* Sets the error icon's functionality that is performed when the icon is clicked. The icon will
* not be clickable if its click and long click listeners are null.
*
* @param errorIconOnClickListener the {@link android.view.View.OnClickListener} the error icon
* view will have
*/
public void setErrorIconOnClickListener(@Nullable OnClickListener errorIconOnClickListener) {
endLayout.setErrorIconOnClickListener(errorIconOnClickListener);
}
/**
* Sets the end icon's functionality that is performed when the end icon is long clicked. The icon
* will not be clickable if its click and long click listeners are null.
*
* @param endIconOnLongClickListener the {@link android.view.View.OnLongClickListener} the end
* icon view will have, or null to clear it.
*/
public void setEndIconOnLongClickListener(
@Nullable OnLongClickListener endIconOnLongClickListener) {
endLayout.setEndIconOnLongClickListener(endIconOnLongClickListener);
}
/**
* Sets the error icon's functionality that is performed when the end icon is long clicked. The
* icon will not be clickable if its click and long click listeners are null.
*
* @param errorIconOnLongClickListener the {@link android.view.View.OnLongClickListener} the error
* icon view will have, or null to clear it.
*/
public void setErrorIconOnLongClickListener(
@Nullable OnLongClickListener errorIconOnLongClickListener) {
endLayout.setErrorIconOnLongClickListener(errorIconOnLongClickListener);
}
/**
* This method should be called from within your icon's click listener if your icon's tint list
* has a color for a state that depends on a click (such as checked state).
*/
public void refreshErrorIconDrawableState() {
endLayout.refreshErrorIconDrawableState();
}
/**
* Sets the current end icon to be VISIBLE or GONE.
*
* @param visible whether the icon should be set to visible
*/
public void setEndIconVisible(boolean visible) {
endLayout.setEndIconVisible(visible);
}
/**
* Returns whether the current end icon is visible.
*
* @see #setEndIconVisible(boolean)
*/
public boolean isEndIconVisible() {
return endLayout.isEndIconVisible();
}
/**
* Sets the current end icon's state to be activated or not.
*
* @param endIconActivated whether the icon should be activated
*/
public void setEndIconActivated(boolean endIconActivated) {
endLayout.setEndIconActivated(endIconActivated);
}
/**
* This method should be called from within your icon's click listener if your icon's tint list
* has a color for a state that depends on a click (such as checked state).
*/
public void refreshEndIconDrawableState() {
endLayout.refreshEndIconDrawableState();
}
/**
* Sets the current end icon to be checkable or not.
*
* If the icon works just as a button and the fact that it's checked or not doesn't affect its
* behavior, such as the clear text end icon, calling this method is encouraged so that screen
* readers will not announce the icon's checked state.
*
* @param endIconCheckable whether the icon should be checkable
* @attr ref com.google.android.material.R.styleable#TextInputLayout_endIconCheckable
*/
public void setEndIconCheckable(boolean endIconCheckable) {
endLayout.setEndIconCheckable(endIconCheckable);
}
/**
* Returns whether the end icon is checkable.
*
* @see #setEndIconCheckable(boolean)
*/
public boolean isEndIconCheckable() {
return endLayout.isEndIconCheckable();
}
/**
* Set the icon to use for the end icon. This method should be called after specifying an {@link
* TextInputLayout.EndIconMode} via {@link #setEndIconMode(int)}.
*
* If you use an icon you should also set a description for its action using {@link
* #setEndIconContentDescription(CharSequence)}. This is used for accessibility.
*
* @param resId resource id of the drawable to set, or 0 to clear the icon
* @attr ref com.google.android.material.R.styleable#TextInputLayout_endIconDrawable
*/
public void setEndIconDrawable(@DrawableRes int resId) {
endLayout.setEndIconDrawable(resId);
}
/**
* Set the icon to use for the end icon. This method should be called after specifying an {@link
* TextInputLayout.EndIconMode} via {@link #setEndIconMode(int)}.
*
* If you use an icon you should also set a description for its action using {@link
* #setEndIconContentDescription(CharSequence)}. This is used for accessibility.
*
* @param endIconDrawable Drawable to set, may be null to clear the icon
* @attr ref com.google.android.material.R.styleable#TextInputLayout_endIconDrawable
*/
public void setEndIconDrawable(@Nullable Drawable endIconDrawable) {
endLayout.setEndIconDrawable(endIconDrawable);
}
/**
* Returns the drawable currently used for the end icon.
*
* @see #setEndIconDrawable(Drawable)
* @attr ref com.google.android.material.R.styleable#TextInputLayout_endIconDrawable
*/
@Nullable
public Drawable getEndIconDrawable() {
return endLayout.getEndIconDrawable();
}
/**
* Sets the width and height of the end icon.
*
* @param iconSize new dimension for width and height of the end icon in pixels.
* @attr ref android.support.design.button.R.styleable#TextInputLayout_endIconSize
* @see #getEndIconMinSize()
*/
public void setEndIconMinSize(@IntRange(from = 0) int iconSize) {
endLayout.setEndIconMinSize(iconSize);
}
/**
* Returns the minimum size of the end icon.
*
* @return Returns the size of the end icon in pixels.
* @attr ref android.support.design.button.R.styleable#TextInputLayout_endIconSize
* @see #setEndIconMinSize(int)
*/
public int getEndIconMinSize() {
return endLayout.getEndIconMinSize();
}
/**
* Sets {@link ScaleType} for the start icon's ImageButton.
*
* @param scaleType {@link ScaleType} for the start icon's ImageButton.
* @attr ref android.support.design.button.R.styleable#TextInputLayout_startIconScaleType
* @see #getStartIconScaleType()
*/
public void setStartIconScaleType(@NonNull ScaleType scaleType) {
startLayout.setStartIconScaleType(scaleType);
}
/**
* Returns the {@link ScaleType} for the start icon's ImageButton.
*
* @return Returns the {@link ScaleType} for the start icon's ImageButton.
* @attr ref android.support.design.button.R.styleable#TextInputLayout_startIconScaleType
* @see #setStartIconScaleType(ScaleType)
*/
@NonNull
public ScaleType getStartIconScaleType() {
return startLayout.getStartIconScaleType();
}
/**
* Sets {@link ScaleType} for the end icon's ImageButton.
*
* @param scaleType {@link ScaleType} for the end icon's ImageButton.
* @attr ref android.support.design.button.R.styleable#TextInputLayout_endIconScaleType
* @see #getEndIconScaleType()
*/
public void setEndIconScaleType(@NonNull ScaleType scaleType) {
endLayout.setEndIconScaleType(scaleType);
}
/**
* Returns the {@link ScaleType} for the end icon's ImageButton.
*
* @return Returns the {@link ScaleType} for the end icon's ImageButton.
* @attr ref android.support.design.button.R.styleable#TextInputLayout_endIconScaleType
* @see #setEndIconScaleType(ScaleType)
*/
@NonNull
public ScaleType getEndIconScaleType() {
return endLayout.getEndIconScaleType();
}
/**
* Set a content description for the end icon.
*
* The content description will be read via screen readers or other accessibility systems to
* explain the action of the icon.
*
* @param resId Resource ID of a content description string to set, or 0 to clear the description
* @attr ref com.google.android.material.R.styleable#TextInputLayout_endIconContentDescription
*/
public void setEndIconContentDescription(@StringRes int resId) {
endLayout.setEndIconContentDescription(resId);
}
/**
* Set a content description for the end icon.
*
* The content description will be read via screen readers or other accessibility systems to
* explain the action of the icon.
*
* @param endIconContentDescription Content description to set, or null to clear the content
* description
* @attr ref com.google.android.material.R.styleable#TextInputLayout_endIconContentDescription
*/
public void setEndIconContentDescription(@Nullable CharSequence endIconContentDescription) {
endLayout.setEndIconContentDescription(endIconContentDescription);
}
/**
* Returns the currently configured content description for the end icon.
*
* This will be used to describe the navigation action to users through mechanisms such as
* screen readers.
*/
@Nullable
public CharSequence getEndIconContentDescription() {
return endLayout.getEndIconContentDescription();
}
/**
* Applies a tint to the end icon drawable. Does not modify the current tint mode, which is {@link
* PorterDuff.Mode#SRC_IN} by default.
*
* Subsequent calls to {@link #setEndIconDrawable(Drawable)} will automatically mutate the
* drawable and apply the specified tint and tint mode using {@link
* Drawable#setTintList(ColorStateList)}.
*
* @param endIconTintList the tint to apply, may be null to clear tint
* @attr ref com.google.android.material.R.styleable#TextInputLayout_endIconTint
*/
public void setEndIconTintList(@Nullable ColorStateList endIconTintList) {
endLayout.setEndIconTintList(endIconTintList);
}
/**
* Specifies the blending mode used to apply the tint specified by {@link
* #setEndIconTintList(ColorStateList)} to the end icon drawable. The default mode is {@link
* PorterDuff.Mode#SRC_IN}.
*
* @param endIconTintMode the blending mode used to apply the tint, may be null to clear tint
* @attr ref com.google.android.material.R.styleable#TextInputLayout_endIconTintMode
*/
public void setEndIconTintMode(@Nullable PorterDuff.Mode endIconTintMode) {
endLayout.setEndIconTintMode(endIconTintMode);
}
/**
* Add a {@link TextInputLayout.OnEndIconChangedListener} that will be invoked when the end icon
* gets changed.
*
* Components that add a listener should take care to remove it when finished via {@link
* #removeOnEndIconChangedListener(OnEndIconChangedListener)}.
*
* @param listener listener to add
*/
public void addOnEndIconChangedListener(@NonNull OnEndIconChangedListener listener) {
endLayout.addOnEndIconChangedListener(listener);
}
/**
* Remove the given {@link TextInputLayout.OnEndIconChangedListener} that was previously added via
* {@link #addOnEndIconChangedListener(OnEndIconChangedListener)}.
*
* @param listener listener to remove
*/
public void removeOnEndIconChangedListener(@NonNull OnEndIconChangedListener listener) {
endLayout.removeOnEndIconChangedListener(listener);
}
/** Remove all previously added {@link TextInputLayout.OnEndIconChangedListener}s. */
public void clearOnEndIconChangedListeners() {
endLayout.clearOnEndIconChangedListeners();
}
/**
* Add a {@link OnEditTextAttachedListener} that will be invoked when the edit text is attached,
* or from this method if the EditText is already present.
*
* Components that add a listener should take care to remove it when finished via {@link
* #removeOnEditTextAttachedListener(OnEditTextAttachedListener)}.
*
* @param listener listener to add
*/
public void addOnEditTextAttachedListener(@NonNull OnEditTextAttachedListener listener) {
editTextAttachedListeners.add(listener);
if (editText != null) {
listener.onEditTextAttached(this);
}
}
/**
* Remove the given {@link OnEditTextAttachedListener} that was previously added via {@link
* #addOnEditTextAttachedListener(OnEditTextAttachedListener)}.
*
* @param listener listener to remove
*/
public void removeOnEditTextAttachedListener(@NonNull OnEditTextAttachedListener listener) {
editTextAttachedListeners.remove(listener);
}
/** Remove all previously added {@link OnEditTextAttachedListener}s. */
public void clearOnEditTextAttachedListeners() {
editTextAttachedListeners.clear();
}
/**
* Set the icon to use for the password visibility toggle button.
*
* If you use an icon you should also set a description for its action using {@link
* #setPasswordVisibilityToggleContentDescription(CharSequence)}. This is used for accessibility.
*
* @param resId resource id of the drawable to set, or 0 to clear the icon
* @attr ref com.google.android.material.R.styleable#TextInputLayout_passwordToggleDrawable
* @deprecated Use {@link #setEndIconDrawable(int)} instead.
*/
@Deprecated
public void setPasswordVisibilityToggleDrawable(@DrawableRes int resId) {
endLayout.setPasswordVisibilityToggleDrawable(resId);
}
/**
* Set the icon to use for the password visibility toggle button.
*
* If you use an icon you should also set a description for its action using {@link
* #setPasswordVisibilityToggleContentDescription(CharSequence)}. This is used for accessibility.
*
* @param icon Drawable to set, may be null to clear the icon
* @attr ref com.google.android.material.R.styleable#TextInputLayout_passwordToggleDrawable
* @deprecated Use {@link #setEndIconDrawable(Drawable)} instead.
*/
@Deprecated
public void setPasswordVisibilityToggleDrawable(@Nullable Drawable icon) {
endLayout.setPasswordVisibilityToggleDrawable(icon);
}
/**
* Set a content description for the navigation button if one is present.
*
* The content description will be read via screen readers or other accessibility systems to
* explain the action of the password visibility toggle.
*
* @param resId Resource ID of a content description string to set, or 0 to clear the description
* @attr ref
* com.google.android.material.R.styleable#TextInputLayout_passwordToggleContentDescription
* @deprecated Use {@link #setEndIconContentDescription(int)} instead.
*/
@Deprecated
public void setPasswordVisibilityToggleContentDescription(@StringRes int resId) {
endLayout.setPasswordVisibilityToggleContentDescription(resId);
}
/**
* Set a content description for the navigation button if one is present.
*
* The content description will be read via screen readers or other accessibility systems to
* explain the action of the password visibility toggle.
*
* @param description Content description to set, or null to clear the content description
* @attr ref
* com.google.android.material.R.styleable#TextInputLayout_passwordToggleContentDescription
* @deprecated Use {@link #setEndIconContentDescription(CharSequence)} instead.
*/
@Deprecated
public void setPasswordVisibilityToggleContentDescription(@Nullable CharSequence description) {
endLayout.setPasswordVisibilityToggleContentDescription(description);
}
/**
* Returns the icon currently used for the password visibility toggle button.
*
* @see #setPasswordVisibilityToggleDrawable(Drawable)
* @attr ref com.google.android.material.R.styleable#TextInputLayout_passwordToggleDrawable
* @deprecated Use {@link #getEndIconDrawable()} instead.
*/
@Nullable
@Deprecated
public Drawable getPasswordVisibilityToggleDrawable() {
return endLayout.getPasswordVisibilityToggleDrawable();
}
/**
* Returns the currently configured content description for the password visibility toggle button.
*
* This will be used to describe the navigation action to users through mechanisms such as
* screen readers.
*
* @deprecated Use {@link #getEndIconContentDescription()} instead.
*/
@Nullable
@Deprecated
public CharSequence getPasswordVisibilityToggleContentDescription() {
return endLayout.getPasswordVisibilityToggleContentDescription();
}
/**
* Returns whether the password visibility toggle functionality is currently enabled.
*
* @see #setPasswordVisibilityToggleEnabled(boolean)
* @deprecated Use {@link #getEndIconMode()} instead.
*/
@Deprecated
public boolean isPasswordVisibilityToggleEnabled() {
return endLayout.isPasswordVisibilityToggleEnabled();
}
/**
* Enables or disable the password visibility toggle functionality.
*
* When enabled, a button is placed at the end of the EditText which enables the user to switch
* between the field's input being visibly disguised or not.
*
* @param enabled true to enable the functionality
* @attr ref com.google.android.material.R.styleable#TextInputLayout_passwordToggleEnabled
* @deprecated Use {@link #setEndIconMode(int)} instead.
*/
@Deprecated
public void setPasswordVisibilityToggleEnabled(final boolean enabled) {
endLayout.setPasswordVisibilityToggleEnabled(enabled);
}
/**
* Applies a tint to the password visibility toggle drawable. Does not modify the current tint
* mode, which is {@link PorterDuff.Mode#SRC_IN} by default.
*
* Subsequent calls to {@link #setPasswordVisibilityToggleDrawable(Drawable)} will
* automatically mutate the drawable and apply the specified tint and tint mode using {@link
* DrawableCompat#setTintList(Drawable, ColorStateList)}.
*
* @param tintList the tint to apply, may be null to clear tint
* @attr ref com.google.android.material.R.styleable#TextInputLayout_passwordToggleTint
* @deprecated Use {@link #setEndIconTintList(ColorStateList)} instead.
*/
@Deprecated
public void setPasswordVisibilityToggleTintList(@Nullable ColorStateList tintList) {
endLayout.setPasswordVisibilityToggleTintList(tintList);
}
/**
* Specifies the blending mode used to apply the tint specified by {@link
* #setPasswordVisibilityToggleTintList(ColorStateList)} to the password visibility toggle
* drawable. The default mode is {@link PorterDuff.Mode#SRC_IN}.
*
* @param mode the blending mode used to apply the tint, may be null to clear tint
* @attr ref com.google.android.material.R.styleable#TextInputLayout_passwordToggleTintMode
* @deprecated Use {@link #setEndIconTintMode(PorterDuff.Mode)} instead.
*/
@Deprecated
public void setPasswordVisibilityToggleTintMode(@Nullable PorterDuff.Mode mode) {
endLayout.setPasswordVisibilityToggleTintMode(mode);
}
/**
* Handles visibility for a password toggle icon when changing obfuscation in a password edit
* text. Public so that clients can override this method for custom UI changes when toggling the
* display of password text
*
* @param shouldSkipAnimations true if the password toggle indicator icon should not animate
* changes
* @deprecated The password toggle will show as checked or unchecked depending on whether the
* {@link EditText}'s {@link android.text.method.TransformationMethod} is of type {@link
* android.text.method.PasswordTransformationMethod}
*/
@Deprecated
public void passwordVisibilityToggleRequested(boolean shouldSkipAnimations) {
endLayout.togglePasswordVisibilityToggle(shouldSkipAnimations);
}
/**
* Sets an {@link TextInputLayout.AccessibilityDelegate} providing an accessibility implementation
* for the {@link EditText} used by this layout.
*
* Note: This method should be used in place of providing an {@link AccessibilityDelegate}
* directly on the {@link EditText}.
*/
public void setTextInputAccessibilityDelegate(
@Nullable TextInputLayout.AccessibilityDelegate delegate) {
if (editText != null) {
ViewCompat.setAccessibilityDelegate(editText, delegate);
}
}
@NonNull
CheckableImageButton getEndIconView() {
return endLayout.getEndIconView();
}
private void dispatchOnEditTextAttached() {
for (OnEditTextAttachedListener listener : editTextAttachedListeners) {
listener.onEditTextAttached(this);
}
}
/*
* We need to add a dummy drawable as the start and/or end compound drawables so that the text is
* indented and doesn't display below the icon or suffix/prefix views.
*/
boolean updateDummyDrawables() {
if (editText == null) {
return false;
}
boolean updatedIcon = false;
// Update start dummy drawable if needed.
if (shouldUpdateStartDummyDrawable()) {
int right = startLayout.getMeasuredWidth() - editText.getPaddingLeft();
if (startDummyDrawable == null || startDummyDrawableWidth != right) {
startDummyDrawable = new ColorDrawable();
startDummyDrawableWidth = right;
startDummyDrawable.setBounds(0, 0, startDummyDrawableWidth, 1);
}
final Drawable[] compounds = editText.getCompoundDrawablesRelative();
if (compounds[0] != startDummyDrawable) {
editText.setCompoundDrawablesRelative(
startDummyDrawable, compounds[1], compounds[2], compounds[3]);
updatedIcon = true;
}
} else if (startDummyDrawable != null) {
// Remove the dummy start compound drawable if it exists and clear it.
final Drawable[] compounds = editText.getCompoundDrawablesRelative();
editText.setCompoundDrawablesRelative(null, compounds[1], compounds[2], compounds[3]);
startDummyDrawable = null;
updatedIcon = true;
}
// Update end dummy drawable if needed.
if (shouldUpdateEndDummyDrawable()) {
int right = endLayout.getSuffixTextView().getMeasuredWidth() - editText.getPaddingRight();
View iconView = endLayout.getCurrentEndIconView();
if (iconView != null) {
right =
right
+ iconView.getMeasuredWidth()
+ ((MarginLayoutParams) iconView.getLayoutParams()).getMarginStart();
}
final Drawable[] compounds = editText.getCompoundDrawablesRelative();
if (endDummyDrawable != null && endDummyDrawableWidth != right) {
// If endLayout only changed width, update dummy drawable here so that we don't override
// the currently saved originalEditTextEndDrawable.
endDummyDrawableWidth = right;
endDummyDrawable.setBounds(0, 0, endDummyDrawableWidth, 1);
editText.setCompoundDrawablesRelative(
compounds[0], compounds[1], endDummyDrawable, compounds[3]);
updatedIcon = true;
} else {
if (endDummyDrawable == null) {
endDummyDrawable = new ColorDrawable();
endDummyDrawableWidth = right;
endDummyDrawable.setBounds(0, 0, endDummyDrawableWidth, 1);
}
// Store the user defined end compound drawable so that we can restore it later.
if (compounds[2] != endDummyDrawable) {
originalEditTextEndDrawable = compounds[2];
editText.setCompoundDrawablesRelative(
compounds[0], compounds[1], endDummyDrawable, compounds[3]);
updatedIcon = true;
}
}
} else if (endDummyDrawable != null) {
// Remove the dummy end compound drawable if it exists and clear it.
final Drawable[] compounds = editText.getCompoundDrawablesRelative();
if (compounds[2] == endDummyDrawable) {
editText.setCompoundDrawablesRelative(
compounds[0], compounds[1], originalEditTextEndDrawable, compounds[3]);
updatedIcon = true;
}
endDummyDrawable = null;
}
return updatedIcon;
}
private boolean shouldUpdateStartDummyDrawable() {
return (getStartIconDrawable() != null
|| (getPrefixText() != null && getPrefixTextView().getVisibility() == VISIBLE))
&& (startLayout.getMeasuredWidth() > 0);
}
private boolean shouldUpdateEndDummyDrawable() {
return (endLayout.isErrorIconVisible()
|| (endLayout.hasEndIcon() && isEndIconVisible())
|| endLayout.getSuffixText() != null)
&& (endLayout.getMeasuredWidth() > 0);
}
@Override
protected void onLayout(boolean changed, int left, int top, int right, int bottom) {
super.onLayout(changed, left, top, right, bottom);
if (editText != null) {
Rect rect = tmpRect;
DescendantOffsetUtils.getDescendantRect(this, editText, rect);
updateBoxUnderlineBounds(rect);
if (hintEnabled) {
collapsingTextHelper.setExpandedTextSize(editText.getTextSize());
final int editTextGravity = editText.getGravity();
collapsingTextHelper.setCollapsedTextGravity(
Gravity.TOP | (editTextGravity & ~Gravity.VERTICAL_GRAVITY_MASK));
collapsingTextHelper.setExpandedTextGravity(editTextGravity);
collapsingTextHelper.setCollapsedBounds(calculateCollapsedTextBounds(rect));
collapsingTextHelper.setExpandedBounds(calculateExpandedTextBounds(rect));
collapsingTextHelper.recalculate();
// If the label should be collapsed, set the cutout bounds on the CutoutDrawable to make
// sure it draws with a cutout in draw().
if (cutoutEnabled() && !hintExpanded) {
openCutout();
}
}
}
}
private void updateBoxUnderlineBounds(@NonNull Rect bounds) {
if (boxUnderlineDefault != null) {
int top = bounds.bottom - boxStrokeWidthDefaultPx;
boxUnderlineDefault.setBounds(bounds.left, top, bounds.right, bounds.bottom);
}
if (boxUnderlineFocused != null) {
int top = bounds.bottom - boxStrokeWidthFocusedPx;
boxUnderlineFocused.setBounds(bounds.left, top, bounds.right, bounds.bottom);
}
}
@Override
public void draw(@NonNull Canvas canvas) {
super.draw(canvas);
drawHint(canvas);
drawBoxUnderline(canvas);
}
@Override
protected void onConfigurationChanged(@NonNull Configuration newConfig) {
super.onConfigurationChanged(newConfig);
collapsingTextHelper.maybeUpdateFontWeightAdjustment(newConfig);
}
private void drawHint(@NonNull Canvas canvas) {
if (hintEnabled) {
collapsingTextHelper.draw(canvas);
}
}
private void drawBoxUnderline(Canvas canvas) {
if (boxUnderlineFocused != null && boxUnderlineDefault != null) {
// Always draw boxUnderlineDefault, because it's either the only underline that should be
// drawn or the backdrop for the focused underline expansion.
boxUnderlineDefault.draw(canvas);
if (editText.isFocused()) {
Rect focusedUnderlineBounds = boxUnderlineFocused.getBounds();
Rect defaultUnderlineBounds = boxUnderlineDefault.getBounds();
// Calculate the expansion fraction bounds based on the CollapsingTextHelper's hint text
// expansion fraction.
float hintExpansionFraction = collapsingTextHelper.getExpansionFraction();
int midpointX = defaultUnderlineBounds.centerX();
focusedUnderlineBounds.left =
AnimationUtils.lerp(midpointX, defaultUnderlineBounds.left, hintExpansionFraction);
focusedUnderlineBounds.right =
AnimationUtils.lerp(midpointX, defaultUnderlineBounds.right, hintExpansionFraction);
boxUnderlineFocused.draw(canvas);
}
}
}
private void collapseHint(boolean animate) {
if (animator != null && animator.isRunning()) {
animator.cancel();
}
if (animate && hintAnimationEnabled) {
animateToExpansionFraction(1f);
} else {
collapsingTextHelper.setExpansionFraction(1f);
}
hintExpanded = false;
if (cutoutEnabled()) {
openCutout();
}
updatePlaceholderText();
startLayout.onHintStateChanged(false);
endLayout.onHintStateChanged(false);
}
private boolean cutoutEnabled() {
return hintEnabled && !TextUtils.isEmpty(hint) && boxBackground instanceof CutoutDrawable;
}
private void openCutout() {
if (!cutoutEnabled()) {
return;
}
final RectF cutoutBounds = tmpRectF;
collapsingTextHelper.getCollapsedTextBottomTextBounds(
cutoutBounds, editText.getWidth(), editText.getGravity());
if (cutoutBounds.width() <= 0 || cutoutBounds.height() <= 0) {
return;
}
applyCutoutPadding(cutoutBounds);
// Offset the cutout bounds by the TextInputLayout's paddings, half of the cutout height, and
// the box stroke width to ensure that the cutout is aligned with the actual collapsed text
// drawing area.
cutoutBounds.offset(
-getPaddingLeft(), -getPaddingTop() - cutoutBounds.height() / 2 + boxStrokeWidthPx);
cutoutBounds.top = 0;
((CutoutDrawable) boxBackground).setCutout(cutoutBounds);
}
private void recalculateCutout() {
if (cutoutEnabled() && !hintExpanded) {
closeCutout();
openCutout();
}
}
private void closeCutout() {
if (cutoutEnabled()) {
((CutoutDrawable) boxBackground).removeCutout();
}
}
private void applyCutoutPadding(@NonNull RectF cutoutBounds) {
cutoutBounds.left -= boxLabelCutoutPaddingPx;
cutoutBounds.right += boxLabelCutoutPaddingPx;
}
@VisibleForTesting
boolean cutoutIsOpen() {
return cutoutEnabled() && ((CutoutDrawable) boxBackground).hasCutout();
}
@Override
protected void drawableStateChanged() {
if (inDrawableStateChanged) {
// Some of the calls below will update the drawable state of child views. Since we're
// using addStatesFromChildren we can get into infinite recursion, hence we'll just
// exit in this instance
return;
}
inDrawableStateChanged = true;
super.drawableStateChanged();
final int[] state = getDrawableState();
boolean changed = false;
if (collapsingTextHelper != null) {
changed |= collapsingTextHelper.setState(state);
}
// Drawable state has changed so see if we need to update the label
if (editText != null) {
updateLabelState(isLaidOut() && isEnabled());
}
updateEditTextBackground();
updateTextInputBoxState();
if (changed) {
invalidate();
}
inDrawableStateChanged = false;
}
void updateTextInputBoxState() {
if (boxBackground == null || boxBackgroundMode == BOX_BACKGROUND_NONE) {
return;
}
final boolean hasFocus = isFocused() || (editText != null && editText.hasFocus());
final boolean isHovered = isHovered() || (editText != null && editText.isHovered());
// Update the text box's stroke color based on the current state.
if (!isEnabled()) {
boxStrokeColor = disabledColor;
} else if (shouldShowError()) {
if (strokeErrorColor != null) {
updateStrokeErrorColor(hasFocus, isHovered);
} else {
boxStrokeColor = getErrorCurrentTextColors();
}
} else if (counterOverflowed && counterView != null) {
if (strokeErrorColor != null) {
updateStrokeErrorColor(hasFocus, isHovered);
} else {
boxStrokeColor = counterView.getCurrentTextColor();
}
} else if (hasFocus) {
boxStrokeColor = focusedStrokeColor;
} else if (isHovered) {
boxStrokeColor = hoveredStrokeColor;
} else {
boxStrokeColor = defaultStrokeColor;
}
if (VERSION.SDK_INT >= VERSION_CODES.Q) {
updateCursorColor();
}
endLayout.onTextInputBoxStateUpdated();
refreshStartIconDrawableState();
// Update the outlined text box's stroke width based on the current state. The filled stroke
// width does not need to be updated based on state, because the filled stroke is handled as
// separate drawables for default and focused states, with constant stroke widths; only the
// stroke visibility changes based on state.
if (boxBackgroundMode == BOX_BACKGROUND_OUTLINE) {
int originalBoxStrokeWidthPx = boxStrokeWidthPx;
if (hasFocus && isEnabled()) {
boxStrokeWidthPx = boxStrokeWidthFocusedPx;
} else {
boxStrokeWidthPx = boxStrokeWidthDefaultPx;
}
if (boxStrokeWidthPx != originalBoxStrokeWidthPx) {
// If stroke width changes, cutout bounds need to be recalculated.
recalculateCutout();
}
}
// Update the text box's background color based on the current state.
if (boxBackgroundMode == BOX_BACKGROUND_FILLED) {
if (!isEnabled()) {
boxBackgroundColor = disabledFilledBackgroundColor;
} else if (isHovered && !hasFocus) {
boxBackgroundColor = hoveredFilledBackgroundColor;
} else if (hasFocus) {
boxBackgroundColor = focusedFilledBackgroundColor;
} else {
boxBackgroundColor = defaultFilledBackgroundColor;
}
}
applyBoxAttributes();
if (getEndIconMode() == END_ICON_DROPDOWN_MENU) {
if (editText instanceof AutoCompleteTextView && !isEditable(editText)) {
// For non-editable dropdowns, the end icon is not clickable and focusable, because the
// whole field is a single touch target. The dropdown can be toggled programmatically by
// calling performClick() on the end icon.
getEndIconView().setFocusable(false);
getEndIconView().setClickable(false);
} else {
getEndIconView().setFocusable(true);
getEndIconView().setClickable(true);
}
}
}
private boolean isOnError() {
return shouldShowError() || (counterView != null && counterOverflowed);
}
private void updateStrokeErrorColor(boolean hasFocus, boolean isHovered) {
int defaultStrokeErrorColor = strokeErrorColor.getDefaultColor();
int hoveredStrokeErrorColor =
strokeErrorColor.getColorForState(
new int[] {android.R.attr.state_hovered, android.R.attr.state_enabled},
defaultStrokeErrorColor);
int focusedStrokeErrorColor =
strokeErrorColor.getColorForState(
new int[] {android.R.attr.state_activated, android.R.attr.state_enabled},
defaultStrokeErrorColor);
if (hasFocus) {
boxStrokeColor = focusedStrokeErrorColor;
} else if (isHovered) {
boxStrokeColor = hoveredStrokeErrorColor;
} else {
boxStrokeColor = defaultStrokeErrorColor;
}
}
@RequiresApi(VERSION_CODES.Q)
private void updateCursorColor() {
ColorStateList color =
cursorColor != null
? cursorColor
: MaterialColors.getColorStateListOrNull(
getContext(), androidx.appcompat.R.attr.colorControlActivated);
if (editText == null || editText.getTextCursorDrawable() == null) {
// If there's no cursor, return.
return;
}
Drawable cursorDrawable = DrawableCompat.wrap(editText.getTextCursorDrawable()).mutate();
if (isOnError() && cursorErrorColor != null) {
color = cursorErrorColor;
}
cursorDrawable.setTintList(color);
}
private void expandHint(boolean animate) {
if (animator != null && animator.isRunning()) {
animator.cancel();
}
if (animate && hintAnimationEnabled) {
animateToExpansionFraction(0f);
} else {
collapsingTextHelper.setExpansionFraction(0f);
}
if (cutoutEnabled() && ((CutoutDrawable) boxBackground).hasCutout()) {
closeCutout();
}
hintExpanded = true;
hidePlaceholderText();
startLayout.onHintStateChanged(true);
endLayout.onHintStateChanged(true);
}
@VisibleForTesting
void animateToExpansionFraction(final float target) {
if (collapsingTextHelper.getExpansionFraction() == target) {
return;
}
if (this.animator == null) {
this.animator = new ValueAnimator();
this.animator.setInterpolator(
MotionUtils.resolveThemeInterpolator(getContext(),
R.attr.motionEasingEmphasizedInterpolator,
AnimationUtils.FAST_OUT_SLOW_IN_INTERPOLATOR));
this.animator.setDuration(
MotionUtils.resolveThemeDuration(getContext(),
R.attr.motionDurationMedium4, LABEL_SCALE_ANIMATION_DURATION));
this.animator.addUpdateListener(
new ValueAnimator.AnimatorUpdateListener() {
@Override
public void onAnimationUpdate(@NonNull ValueAnimator animator) {
collapsingTextHelper.setExpansionFraction((float) animator.getAnimatedValue());
}
});
}
this.animator.setFloatValues(collapsingTextHelper.getExpansionFraction(), target);
this.animator.start();
}
final boolean isHintExpanded() {
return hintExpanded;
}
@VisibleForTesting
final boolean isHelperTextDisplayed() {
return indicatorViewController.helperTextIsDisplayed();
}
@VisibleForTesting
final int getHintCurrentCollapsedTextColor() {
return collapsingTextHelper.getCurrentCollapsedTextColor();
}
@VisibleForTesting
final float getHintCollapsedTextHeight() {
return collapsingTextHelper.getCollapsedTextHeight();
}
/**
* An {@link AccessibilityDelegate} intended to be set on an {@link EditText} or {@link
* TextInputEditText} with {@link
* TextInputLayout#setTextInputAccessibilityDelegate(TextInputLayout.AccessibilityDelegate)} to
* provide attributes for accessibility that are managed by {@link TextInputLayout}.
*/
public static class AccessibilityDelegate extends AccessibilityDelegateCompat {
private final TextInputLayout layout;
public AccessibilityDelegate(@NonNull TextInputLayout layout) {
this.layout = layout;
}
@Override
public void onInitializeAccessibilityNodeInfo(
@NonNull View host, @NonNull AccessibilityNodeInfoCompat info) {
super.onInitializeAccessibilityNodeInfo(host, info);
EditText editText = layout.getEditText();
CharSequence inputText = (editText != null) ? editText.getText() : null;
CharSequence hintText = layout.getHint();
CharSequence errorText = layout.getError();
CharSequence placeholderText = layout.getPlaceholderText();
int maxCharLimit = layout.getCounterMaxLength();
CharSequence counterOverflowDesc = layout.getCounterOverflowDescription();
boolean showingText = !TextUtils.isEmpty(inputText);
boolean hasHint = !TextUtils.isEmpty(hintText);
boolean isHintCollapsed = !layout.isHintExpanded();
boolean showingError = !TextUtils.isEmpty(errorText);
boolean contentInvalid = showingError || !TextUtils.isEmpty(counterOverflowDesc);
String hint = hasHint ? hintText.toString() : "";
// Screen readers should follow visual order of the elements of the text field.
layout.startLayout.setupAccessibilityNodeInfo(info);
// Make sure text field has the appropriate announcements.
if (showingText) {
info.setText(inputText);
} else if (!TextUtils.isEmpty(hint)) {
info.setText(hint);
if (isHintCollapsed && placeholderText != null) {
info.setText(hint + ", " + placeholderText);
}
} else if (placeholderText != null) {
info.setText(placeholderText);
}
if (!TextUtils.isEmpty(hint)) {
if (VERSION.SDK_INT >= VERSION_CODES.O) {
info.setHintText(hint);
} else {
// Due to a TalkBack bug, setHintText has no effect in APIs < 26 so we append the hint to
// the text announcement. The resulting announcement is the same as in APIs >= 26.
String text = showingText ? (inputText + ", " + hint) : hint;
info.setText(text);
}
info.setShowingHintText(!showingText);
}
// Announce when the character limit is reached.
info.setMaxTextLength(
(inputText != null && inputText.length() == maxCharLimit) ? maxCharLimit : -1);
if (contentInvalid) {
info.setError(showingError ? errorText : counterOverflowDesc);
}
View helperTextView = layout.indicatorViewController.getHelperTextView();
if (helperTextView != null) {
info.setLabelFor(helperTextView);
}
layout.endLayout.getEndIconDelegate().onInitializeAccessibilityNodeInfo(host, info);
}
@Override
public void onPopulateAccessibilityEvent(
@NonNull View host, @NonNull AccessibilityEvent event) {
super.onPopulateAccessibilityEvent(host, event);
layout.endLayout.getEndIconDelegate().onPopulateAccessibilityEvent(host, event);
}
}
}
null if there is no placeholder text.
*
* @see #setPlaceholderText(CharSequence)
*/
@Nullable
public CharSequence getPlaceholderText() {
return placeholderEnabled ? placeholderText : null;
}
private void setPlaceholderTextEnabled(boolean placeholderEnabled) {
// If the enabled state is the same as before, do nothing.
if (this.placeholderEnabled == placeholderEnabled) {
return;
}
// Otherwise, adjust enabled state.
if (placeholderEnabled) {
addPlaceholderTextView();
} else {
removePlaceholderTextView();
placeholderTextView = null;
}
this.placeholderEnabled = placeholderEnabled;
}
private Fade createPlaceholderFadeTransition() {
Fade placeholderFadeTransition = new Fade();
placeholderFadeTransition.setDuration(MotionUtils.resolveThemeDuration(getContext(),
R.attr.motionDurationShort2, DEFAULT_PLACEHOLDER_FADE_DURATION));
placeholderFadeTransition.setInterpolator(MotionUtils.resolveThemeInterpolator(getContext(),
R.attr.motionEasingLinearInterpolator, AnimationUtils.LINEAR_INTERPOLATOR));
return placeholderFadeTransition;
}
private void updatePlaceholderText() {
updatePlaceholderText(editText == null ? null : editText.getText());
}
private void updatePlaceholderText(@Nullable Editable text) {
int length = lengthCounter.countLength(text);
if (length == 0 && !hintExpanded) {
showPlaceholderText();
} else {
hidePlaceholderText();
}
}
private void showPlaceholderText() {
if (placeholderTextView != null && placeholderEnabled && !TextUtils.isEmpty(placeholderText)) {
placeholderTextView.setText(placeholderText);
TransitionManager.beginDelayedTransition(inputFrame, placeholderFadeIn);
placeholderTextView.setVisibility(VISIBLE);
placeholderTextView.bringToFront();
}
}
private void hidePlaceholderText() {
if (placeholderTextView != null && placeholderEnabled) {
placeholderTextView.setText(null);
TransitionManager.beginDelayedTransition(inputFrame, placeholderFadeOut);
placeholderTextView.setVisibility(INVISIBLE);
}
}
private void addPlaceholderTextView() {
if (placeholderTextView != null) {
inputFrame.addView(placeholderTextView);
placeholderTextView.setVisibility(VISIBLE);
}
}
private void removePlaceholderTextView() {
if (placeholderTextView != null) {
placeholderTextView.setVisibility(GONE);
}
}
/**
* Sets the text color used by the placeholder text in all states.
*
* @attr ref com.google.android.material.R.styleable#TextInputLayout_placeholderTextColor
*/
public void setPlaceholderTextColor(@Nullable ColorStateList placeholderTextColor) {
if (this.placeholderTextColor != placeholderTextColor) {
this.placeholderTextColor = placeholderTextColor;
if (placeholderTextView != null && placeholderTextColor != null) {
placeholderTextView.setTextColor(placeholderTextColor);
}
}
}
/**
* Returns the ColorStateList used for the placeholder text.
*
* @attr ref com.google.android.material.R.styleable#TextInputLayout_placeholderTextColor
*/
@Nullable
public ColorStateList getPlaceholderTextColor() {
return placeholderTextColor;
}
/**
* Sets the text color and size for the placeholder text from the specified TextAppearance
* resource.
*
* @attr ref com.google.android.material.R.styleable#TextInputLayout_placeholderTextAppearance
*/
public void setPlaceholderTextAppearance(@StyleRes int placeholderTextAppearance) {
this.placeholderTextAppearance = placeholderTextAppearance;
if (placeholderTextView != null) {
TextViewCompat.setTextAppearance(placeholderTextView, placeholderTextAppearance);
}
}
/**
* Returns the TextAppearance resource used for the placeholder text color.
*
* @attr ref com.google.android.material.R.styleable#TextInputLayout_placeholderTextAppearance
*/
@StyleRes
public int getPlaceholderTextAppearance() {
return placeholderTextAppearance;
}
/**
* Sets the cursor color. Using this method will take precedence over using the
* value of {@code ?attr/colorControlActivated}.
*
* null otherwise.
*
* null if there is no prefix text.
*
* @see #setPrefixText(CharSequence)
*/
@Nullable
public CharSequence getPrefixText() {
return startLayout.getPrefixText();
}
/**
* Returns the prefix text view.
*
* null if there is no suffix text.
*
* @see #setSuffixText(CharSequence)
*/
@Nullable
public CharSequence getSuffixText() {
return endLayout.getSuffixText();
}
/**
* Returns the suffix text view.
*
* null if no error was set or if error displaying is not enabled.
*
* @see #setError(CharSequence)
*/
@Nullable
public CharSequence getError() {
return indicatorViewController.isErrorEnabled() ? indicatorViewController.getErrorText() : null;
}
/**
* Returns the helper message that was set to be displayed with {@link
* #setHelperText(CharSequence)}, or null if no helper text was set or if helper text
* functionality is not enabled.
*
* @see #setHelperText(CharSequence)
*/
@Nullable
public CharSequence getHelperText() {
return indicatorViewController.isHelperTextEnabled()
? indicatorViewController.getHelperText()
: null;
}
/**
* Returns whether any hint state changes, due to being focused or non-empty text, are animated.
*
* @see #setHintAnimationEnabled(boolean)
* @attr ref com.google.android.material.R.styleable#TextInputLayout_hintAnimationEnabled
*/
public boolean isHintAnimationEnabled() {
return hintAnimationEnabled;
}
/**
* Set whether any hint state changes, due to being focused or non-empty text, are animated.
*
* @see #isHintAnimationEnabled()
* @attr ref com.google.android.material.R.styleable#TextInputLayout_hintAnimationEnabled
*/
public void setHintAnimationEnabled(boolean enabled) {
hintAnimationEnabled = enabled;
}
/**
* Returns whether the hint expands to occupy the input area when the text field is unpopulated
* and not focused.
*
* @see #setExpandedHintEnabled(boolean)
* @attr ref com.google.android.material.R.styleable#TextInputLayout_hintExpandedEnabled
*/
public boolean isExpandedHintEnabled() {
return expandedHintEnabled;
}
/**
* Sets whether the hint should expand to occupy the input area when the text field is unpopulated
* and not focused.
*
* @see #isExpandedHintEnabled()
* @attr ref com.google.android.material.R.styleable#TextInputLayout_hintExpandedEnabled
*/
public void setExpandedHintEnabled(boolean enabled) {
if (expandedHintEnabled != enabled) {
expandedHintEnabled = enabled;
updateLabelState(false);
}
}
@Override
public void onRtlPropertiesChanged(int layoutDirection) {
super.onRtlPropertiesChanged(layoutDirection);
boolean isLayoutDirectionRtl = layoutDirection == View.LAYOUT_DIRECTION_RTL;
if (isLayoutDirectionRtl != areCornerRadiiRtl) {
// Switch corner radius values from LTR to RTL or vice versa.
float boxCornerRadiusTopLeft =
shapeAppearanceModel.getTopLeftCornerSize().getCornerSize(tmpRectF);
float boxCornerRadiusTopRight =
shapeAppearanceModel.getTopRightCornerSize().getCornerSize(tmpRectF);
float boxCornerRadiusBottomLeft =
shapeAppearanceModel.getBottomLeftCornerSize().getCornerSize(tmpRectF);
float boxCornerRadiusBottomRight =
shapeAppearanceModel.getBottomRightCornerSize().getCornerSize(tmpRectF);
CornerTreatment topLeftTreatment =
shapeAppearanceModel.getTopLeftCorner();
CornerTreatment topRightTreatment =
shapeAppearanceModel.getTopRightCorner();
CornerTreatment bottomLeftTreatment =
shapeAppearanceModel.getBottomLeftCorner();
CornerTreatment bottomRightTreatment =
shapeAppearanceModel.getBottomRightCorner();
ShapeAppearanceModel newShapeAppearanceModel =
ShapeAppearanceModel.builder()
.setTopLeftCorner(topRightTreatment)
.setTopRightCorner(topLeftTreatment)
.setBottomLeftCorner(bottomRightTreatment)
.setBottomRightCorner(bottomLeftTreatment)
.setTopLeftCornerSize(boxCornerRadiusTopRight)
.setTopRightCornerSize(boxCornerRadiusTopLeft)
.setBottomLeftCornerSize(boxCornerRadiusBottomRight)
.setBottomRightCornerSize(boxCornerRadiusBottomLeft)
.build();
areCornerRadiiRtl = isLayoutDirectionRtl;
setShapeAppearanceModel(newShapeAppearanceModel);
}
}
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
if (!globalLayoutListenerAdded) {
endLayout.getViewTreeObserver().addOnGlobalLayoutListener(this);
globalLayoutListenerAdded = true;
}
updatePlaceholderMeasurementsBasedOnEditText();
endLayout.updateSuffixTextViewPadding();
if (!isHintTextSingleLine()) {
updateCollapsingTextDimens(
editText.getMeasuredWidth()
- editText.getCompoundPaddingLeft()
- editText.getCompoundPaddingRight());
}
}
private void updateCollapsingTextDimens(int availableWidth) {
collapsingTextHelper.updateTextHeights(availableWidth);
Rect rect = tmpRect;
DescendantOffsetUtils.getDescendantRect(this, editText, rect);
collapsingTextHelper.setCollapsedBounds(calculateCollapsedTextBounds(rect));
updateInputLayoutMargins();
adjustFilledEditTextPaddingForLargeFont();
updateEditTextHeight(availableWidth);
}
private void updateEditTextHeight(int availableWidth) {
if (editText == null) {
return;
}
float minHeight = collapsingTextHelper.getExpandedTextHeight();
float newMinHeight = 0;
if (placeholderText != null) {
TextPaint textPaint = new TextPaint(Paint.ANTI_ALIAS_FLAG | Paint.SUBPIXEL_TEXT_FLAG);
textPaint.set(placeholderTextView.getPaint());
textPaint.setTextSize(placeholderTextView.getTextSize());
textPaint.setTypeface(placeholderTextView.getTypeface());
textPaint.setLetterSpacing(placeholderTextView.getLetterSpacing());
try {
StaticLayout placeholderLayout =
StaticLayoutBuilderCompat.obtain(placeholderText, textPaint, availableWidth)
.setIsRtl(getLayoutDirection() == LAYOUT_DIRECTION_RTL)
.setIncludePad(true)
.setLineSpacing(
placeholderTextView.getLineSpacingExtra(),
placeholderTextView.getLineSpacingMultiplier())
.setStaticLayoutBuilderConfigurer(
builder -> {
if (VERSION.SDK_INT >= VERSION_CODES.M) {
builder.setBreakStrategy(placeholderTextView.getBreakStrategy());
}
})
.build();
float extraHeight = 0;
if (boxBackgroundMode == BOX_BACKGROUND_FILLED) {
extraHeight = collapsingTextHelper.getCollapsedTextHeight()
+ boxCollapsedPaddingTopPx + extraSpaceBetweenPlaceholderAndHint;
}
newMinHeight = placeholderLayout.getHeight() + extraHeight;
} catch (StaticLayoutBuilderCompatException e) {
Log.e(TAG, e.getCause().getMessage(), e);
}
}
minHeight = Math.max(minHeight, newMinHeight);
if (editText.getMeasuredHeight() < minHeight) {
editText.setMinimumHeight(Math.round(minHeight));
}
}
private boolean updateEditTextHeightBasedOnIcon() {
if (editText == null) {
return false;
}
// We need to make sure that the EditText's height is at least the same as the end or start
// icon's height (whichever is bigger). This ensures focus works properly, and there is no
// visual jump if the icon is enabled/disabled.
int maxIconHeight = Math.max(endLayout.getMeasuredHeight(), startLayout.getMeasuredHeight());
if (editText.getMeasuredHeight() < maxIconHeight) {
editText.setMinimumHeight(maxIconHeight);
return true;
}
return false;
}
private void updatePlaceholderMeasurementsBasedOnEditText() {
if (placeholderTextView != null && editText != null) {
// Use the EditText's positioning for the placeholder.
final int editTextGravity = this.editText.getGravity();
placeholderTextView.setGravity(editTextGravity);
placeholderTextView.setPadding(
editText.getCompoundPaddingLeft(),
editText.getCompoundPaddingTop(),
editText.getCompoundPaddingRight(),
editText.getCompoundPaddingBottom());
}
}
/**
* Sets the start icon.
*
*