如果我在AutoCompleteTextView中使用它,Google Places API只会呈现单个结果。从第二个请求发生此问题。即,第一次正确加载列表,结果为5。 使用[PlacesAutoCompleteAdapter][1]作为适配器。
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);