你如何改变片段的样式? - Google地方自动填充功能

时间:2016-02-25 04:36:55

标签: android android-fragments google-places-api

我是一个Android新手,所以请放轻松我。我刚刚实施了Google地方自动填写字段https://developers.google.com/places/android-api/autocomplete

我唯一添加到视图中的是这个片段,它控制textInput和textInput获得焦点时出现的搜索结果的模态。

<fragment
    android:id="@+id/place_autocomplete_fragment"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:name="com.google.android.gms.location.places.ui.PlaceAutocompleteFragment"/>

搜索输入与我附近搜索字段的样式不符。我想调整它,我该怎么做?我一直在尝试获取自动完成搜索栏正在使用的xml文件的引用。

感谢您的帮助!

1 个答案:

答案 0 :(得分:1)

你必须重新定义他们的内部风格。对于可能的颜色:

<color name="place_autocomplete_search_text">@android:color/primary_text_dark</color>
<color name="place_autocomplete_search_hint">@android:color/secondary_text_dark</color>