0

我在AutoCompleteTextView屏幕的一侧有一个。这是 XML。

<AutoCompleteTextVie
        android:id="@+id/location"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:hint="Location"/>

这是我正在使用的适配器。

locationsAdapter = new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, this.locations);

不幸的是,建议出现在屏幕的一半,例如“厨房餐桌”显示为“厨房”。

此外,当我将按钮进一步向左移动以使其停留在屏幕上时,下拉菜单的宽度被截断为按钮的宽度,这比许多文本选项要小。

有什么建议么?

我正在使用 HTC Sensation XL,不知道这是否与设备相关。

相关问题:AutoCompleteTextView 下拉菜单出现在编辑字段上方而不是下方

4

1 回答 1

1

对不起,伙计们......我应该只是查找文档!

android:dropDownWidth="200dp"
android:dropDownHorizontalOffset="-30dp"

可能有更好的方法来做到这一点......如果你有最喜欢的,请告诉我。

于 2013-03-19T10:48:47.973 回答