我有一个带有自动完成文本视图的活动、一个添加按钮和一个在用户键入时弹出的列表视图
在 xml 中:
<Button
android:id="@+id/locationButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:minWidth="46dip"
android:onClick="getLocation"
android:text="@string/icon_map_marker" />
<AutoCompleteTextView
android:id="@+id/autocomplete_city"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:dropDownVerticalOffset="0.2dp"
android:hint="@string/city_hint"
android:inputType="text"
android:layout_alignBottom="@+id/locationButton"
android:layout_alignTop="@id/locationButton"
android:layout_toLeftOf="@id/locationButton"/>
问题是由自动完成过程创建的列表视图与自动完成文本视图具有相同的宽度。但是它应该有全宽,包括按钮的宽度(见图)。任何想法如何做到这一点?