I am using PlaceAutocompleteApi from Play Services, what I want to do is restrict auto-complete to specific country & city only. Eg. All cities from lets say In
PlaceAutocompleteApi
Filter results by country
// Create Filter AutocompleteFilter typeFilter = new AutocompleteFilter.Builder() .setCountry("AU") .build(); // Attach to autocomplete fragment / widget autocompleteFragment.setFilter(typeFilter);