Place-picker and Place Autocomplete Demo Description.
Hello, The PlacePicker provides a UI dialog that displays an interactive map and a list of nearby places, including places corresponding to geographical addresses and local businesses. Users can choose a place, and your app can then retrieve the details of the selected place.
And The autocomplete widget is a search dialog with built-in autocomplete functionality. As a user enters search terms, the widget presents a list of predicted places to choose from. When the user makes a selection, a Place instance is returned, which your app can then use to get details about the selected place.
Steps for it is:
1. Go to: https://developers.google.com/places/android-api/placepicker and get key and put into your manifest file and dependancy in your gradle
<meta-data
android:name="com.google.android.geo.API_KEY"
android:value="Your Api Key"/>
compile 'com.google.android.gms:play-services-maps:8.4.0'
compile 'com.google.android.gms:play-services-location:8.4.0'