Change foreground and background color of Place Autocomplete Fragment

淺唱寂寞╮ 提交于 2019-12-21 03:37:07

问题


I've used Google Place API and integrated Place Autocomplete Fragment. Can i change its Foreground or background color. It seems bit dull in my device.

And I also want to know that can I set "powered by Google" sentence to at the bottom part of the screen. I have seen some application which have it on bottom.


回答1:


If you place that fragment in another layout you are able to modify as you want. Make nested such: <...CardView...> <..Your Fragment...>

The logo issue, since you decided to use all autonomous API instead of creating your own layout and integrating, it comes up by default which will stay stable there. Implement your view and use the Places API data, then you be able to make some modifications as changing place. BUT you HAVE TO display the logo in that case of-course.

Check this link also explains attributions of Places API: https://developers.google.com/places/android-api/attributions




回答2:


You just use this code in java.

placeAutoComplete.getView().setBackgroundColor(Color.WHITE);

You free to change the color of the background Place Autocomplete Fragment, in the example I use color WHITE for the background.



来源:https://stackoverflow.com/questions/35891667/change-foreground-and-background-color-of-place-autocomplete-fragment

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!