Skip to content

Instantly share code, notes, and snippets.

@Ikhiloya
Created June 1, 2019 23:09
Show Gist options
  • Select an option

  • Save Ikhiloya/dd8db38eb83d6264cbb8e762427e0e15 to your computer and use it in GitHub Desktop.

Select an option

Save Ikhiloya/dd8db38eb83d6264cbb8e762427e0e15 to your computer and use it in GitHub Desktop.
public void onSearchCalled() {
// Set the fields to specify which types of place data to return.
List<Place.Field> fields = Arrays.asList(Place.Field.ID, Place.Field.NAME, Place.Field.ADDRESS, Place.Field.LAT_LNG);
// Start the autocomplete intent.
Intent intent = new Autocomplete.IntentBuilder(
AutocompleteActivityMode.FULLSCREEN, fields).setCountry("NG") //NIGERIA
.build(this);
startActivityForResult(intent, AUTOCOMPLETE_REQUEST_CODE);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment