我想更改我在Android Studio中基于Google Maps-API的应用程序中获得的建议框的布局和颜色。我不知道该看看Google Maps的代码还是其他地方的代码。
the link contains an image with the suggestbox I'm talking about
这是TextView的代码:
<AutoCompleteTextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginLeft="5dp"
android:layout_marginRight="50dp"
android:layout_toRightOf="@+id/ic_magnify"
android:textSize="15sp"
android:textColor="#ecf0f1"
android:id="@+id/input_search"
android:background="@null"
android:imeOptions="actionSearch"
android:inputType="text"
/>
然后我使用PlaceAutocompleteAdapter自动建议可能的位置。
答案 0 :(得分:0)
通过设置下拉菜单的样式来解决此问题。 我在AutoCompleteTextView样式中添加了 android:popupBackground =“#2d3e50” ,该样式将颜色更改为一种 我需要。