android - Google Places Api returns only single result -
google places api renders single result if use in autocompletetextview. issue occurs second request., i.e., first time list loaded 5 results. used [ placesautocompleteadapter][1] adapter.
googleapiclient mgoogleapiclient = new googleapiclient.builder(this) .addapi(places.geo_data_api) .addapi(places.place_detection_api) .addonconnectionfailedlistener(this) .build(); placeautocompleteadapter madapter = new placeautocompleteadapter(this, mgoogleapiclient, null, null); autocompletetextview eventlocation.setadapter(madapter);
Comments
Post a Comment