如何为新地点设置样式AutocompleteSupportFragment

时间:2019-05-07 11:15:15

标签: android android-layout

是否有关于如何设置样式的参考?我没有在开发人员文档中找到任何内容。任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:1)

首先,通过以下方式获取片段的视图:

AutocompleteSupportFragment autocompleteFragment = (AutocompleteSupportFragment)
            getSupportFragmentManager().findFragmentById(R.id.autocomplete_fragment);
View view = autocompleteFragment.getView();

要获取放大镜图标的ImageButton视图:

  ImageButton searchButton = view.findViewById(com.google.android.libraries.places.R.id.places_autocomplete_search_button);

要获取EditText视图,他们将“搜索”写为提示:

  EditText editText = view.findViewById(com.google.android.libraries.places.R.id.places_autocomplete_search_input);