首页 > 解决方案 > 如何在 AutoCompleteTextView Android 中选择所有文本

问题描述

我想在单击时选择全文AutoCompleteTextView

我用过android:selectAllOnFocus="true"但没用。

标签: javaandroidautocompletetextview

解决方案


尝试这个

    android:textIsSelectable="true"
    android:focusable="true"
    android:longClickable="true"

这适用于 TextView 但可能适用于 AutoCompletTextView


推荐阅读