我在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,不知道这是否与设备相关。