Created
June 1, 2019 23:09
-
-
Save Ikhiloya/dd8db38eb83d6264cbb8e762427e0e15 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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