gpt4 book ai didi

android - 从 AutoCompleteTextView 中删除下拉箭头

转载 作者:行者123 更新时间:2023-12-03 09:57:49 46 4
gpt4 key购买 nike

我想删除由 AutoCompleteTextView 创建的下拉箭头当我使用 TextInputLayout并使用样式:ExposedDropdownMenu
Added image about what I want to remove

下面是我的代码:

<com.google.android.material.textfield.TextInputLayout
android:layout_marginTop="10dp"
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox.ExposedDropdownMenu"
android:hint="Marital Status"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:boxStrokeColor="@color/colorPrimaryDark">

<AutoCompleteTextView
android:background="@null"
android:focusable="false"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/edt_marital" />
</com.google.android.material.textfield.TextInputLayout>

最佳答案

如果您想避免下拉图标,请使用 app:endIconMode 属性。

<com.google.android.material.textfield.TextInputLayout
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox.ExposedDropdownMenu"
app:endIconMode="none"
...>

之前和之后:

enter image description here enter image description here

关于android - 从 AutoCompleteTextView 中删除下拉箭头,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58038639/

46 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com