早上好, 我目前有一個自定義Google places autocomplete與AutoCompleteTextView運行,但我需要實現它與以下庫Floatingsearchview,但我找不到辦法做到這一點,讓我們看看你是否可以幫我。Google Places自動填充與Floatingsearchview
感謝
早上好, 我目前有一個自定義Google places autocomplete與AutoCompleteTextView運行,但我需要實現它與以下庫Floatingsearchview,但我找不到辦法做到這一點,讓我們看看你是否可以幫我。Google Places自動填充與Floatingsearchview
感謝
使用上進行此
try {
Intent intent =
new PlaceAutocomplete.IntentBuilder(PlaceAutocomplete.MODE_OVERLAY)
.build(this);
startActivityForResult(intent, PLACE_AUTOCOMPLETE_REQUEST_CODE);
} catch (GooglePlayServicesRepairableException e) {
// TODO: Handle the error.
} catch (GooglePlayServicesNotAvailableException e) {
// TODO: Handle the error.
}
結果選擇
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
if (requestCode == PLACE_AUTOCOMPLETE_REQUEST_CODE) {
if (resultCode == RESULT_OK) {
Place place = PlaceAutocomplete.getPlace(this, data);
Log.i(TAG, "Place: " + place.getName());
} else if (resultCode == PlaceAutocomplete.RESULT_ERROR) {
Status status = PlaceAutocomplete.getStatus(this, data);
// TODO: Handle the error.
Log.i(TAG, status.getStatusMessage());
} else if (resultCode == RESULT_CANCELED) {
// The user canceled the operation.
}
}
}
鏈接https://developers.google.com/places/android-api/autocomplete#get_place_predictions_programmatically
從這裏的浮動搜索示例的示例https://github.com/arimorty/floatingsearchview/blob/master/sample/src/main/java/com/arlib/floatingsearchviewdemo/data/DataHelper.java它爲適配器提供了自定義篩選器。我相信你可以使用Google API的自動完成預測模型。
請在此處看樣本 https://github.com/googlesamples/android-play-places/tree/master/PlaceCompleteAdapter他們如何使用Google API和ArrayAdapter的自定義過濾器。您可以將此示例中的自定義過濾器提供給floatingsearchview。
你到目前爲止嘗試過什麼? – FWeigl