如何在android中的AutocompleteTextView中添加水平滚动条?

问题描述 投票:0回答:1

当AutoCompleteText中的文本记录超过其高度时,会出现自动垂直滚动条,但为什么当文本长度大于AutoCompleteText时,宽度滚动条不会出现?如何在AutoCompleteText中添加水平滚动条?

Main_Layout:

<LinearLayout
    style="@style/form_item_style_default"
    android:orientation="horizontal">

<AutoCompleteTextView
    android:id="@+id/refcode_list"
    android:editable="false"
    android:dropDownHeight="170dp"
    android:hint="@string/to_select"
    android:dropDownWidth="match_parent"
    android:scrollbars="horizontal|vertical"/>
</LinearLayout>

enter image description here

android scrollview autocompletetextview
1个回答
0
投票

使用android:imeOptions="flagNoExtractUi"属性autocompleteTextView

这是一篇相关的帖子:

How to show AutoCompleteTextView suggestions in landscape orientation

PS:我为我的英语道歉,我使用了翻译。

© www.soinside.com 2019 - 2024. All rights reserved.