androidplaceautocompletefragment

How to change the hint's text color of PlaceAutocompleteFragment?


I don't see any methods that I can use to change the text color of hint in PlaceAutocompleteFragment. enter image description here


Solution

  • EditText etPlace = (EditText)autocompleteFragment.getView().findViewById(R.id.place_autocomplete_search_input);
            etPlace.setHint("Type your address");
            etPlace.setHintTextColor(R.color.primary_text_material_dark);