在Android Studio中更改Autosuggestbox的颜色

时间:2018-08-09 19:30:20

标签: android android-layout

我想更改我在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自动建议可能的位置。

1 个答案:

答案 0 :(得分:0)

通过设置下拉菜单的样式来解决此问题。 我在AutoCompleteTextView样式中添加了 android:popupBackground =“#2d3e50” ,该样式将颜色更改为一种 我需要。