【问题标题】:How to change TextInputLayout material drop dow arrow drawable when using ExposeDropDownMenu style使用 ExposeDdropDownMenu 样式时如何更改 TextInputLayout 材质下拉箭头可绘制
【发布时间】:2020-04-08 23:21:42
【问题描述】:

有人知道如何用AutoCompleteTextView 更改MaterialComponents Spinner 小部件箭头图像。

代码:

 <com.google.android.material.textfield.TextInputLayout
     android:id="@+id/contractSpinnerContainer"
     style="@style/TextInputLayout.FilledBox.Dense.ExposeDropDownMenu"
     android:layout_width="0dp"
     android:layout_height="wrap_content"
     android:layout_marginTop="@dimen/default_padding"
     app:layout_constraintEnd_toStartOf="@+id/guidelineEnd"
     app:layout_constraintStart_toStartOf="@+id/guidelineStart"
     app:layout_constraintTop_toBottomOf="@+id/registrationLastNameContainer">

  <AutoCompleteTextView
         android:layout_width="match_parent"
         android:layout_height="wrap_content"
         android:hint="Country"
         android:imeOptions="actionNext"
         android:includeFontPadding="false"
         android:inputType="textPersonName"
         android:maxLines="1"
         android:textColor="@color/ts_black"
         android:textSize="@dimen/login_input_text_size" />

 </com.google.android.material.textfield.TextInputLayout>

想要改变的结果:

【问题讨论】:

  • 试过app:endIconMode="custom"app:endIconDrawable="@drawable/custom_icon" ?
  • P.S.它在没有app:endIconMode="custom" 的情况下工作
  • 也许为时已晚,但你可以这样做:link

标签: android android-textinputlayout material-components material-components-android


【解决方案1】:

您需要使用父级的主题更改来设置背景。

【讨论】:

  • 更改背景仅适用于 Spinner 小部件,但这里是具有 ExposeDropDownMenu 样式的 TextInputLayout
  • 您需要从扩展父主题“TextInputLayout.FilledBox.Dense.ExposeDropDownMenu”创建主题扩展此父主题并在此设置您的背景。
  • 不,它不是这样工作的。答案在问题下的评论中
  • @AntonisRadz 好的,太好了
【解决方案2】:

所以在@MatPag 的帮助下,答案是:

app:endIconMode="custom"
app:endIconDrawable="@drawable/custom_icon"

实际上在API29 上它可以在没有app:endIconMode="custom" 的情况下工作,尚未在其他 API 上进行测试。

【讨论】:

    猜你喜欢
    • 2020-08-15
    • 2019-06-02
    • 1970-01-01
    • 1970-01-01
    • 2020-12-17
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多