I'd like to change the layout and color of the suggestion box I get in my Google Maps-API based app in Android Studio. I have no idea whether I should look into the code of Google Maps or somewhere else.
the link contains an image with the suggestbox I'm talking about
This is the code of the 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"
/>
And I use the PlaceAutocompleteAdapter to autosuggest the possible locations.