Android EditText的输入类型是否带有清除按钮?

时间:2011-11-16 04:39:04

标签: android

Android EditText的输入类型是否带有清除按钮?

它应该像html 5搜索输入类型一样工作。

enter image description here

3 个答案:

答案 0 :(得分:9)

没有内部输入类型,但您可以自定义它以便工作。此链接可能会对您有所帮助:Stack-Overflow: EditText with clear button

答案 1 :(得分:5)

如果您使用的是TextInputLayout,则可以使用endIconModeendIconDrawable

答案 2 :(得分:2)

您可以使用以下内容,效果很好

<?xml version="1.0" encoding="utf-8"?>
<com.google.android.material.textfield.TextInputLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/textInputLayout"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    app:endIconMode="clear_text"
    tools:hint="Label">

    <com.google.android.material.textfield.TextInputEditText
        android:id="@+id/textInputEditText"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        tools:text="Value" />

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

但是这种方法对于MaterialAutoCompleteTextView无效