Google размещает API-вызов на AutoCompleteTextView в Appcompactivity - Android - PullRequest
0 голосов
/ 22 января 2020

Как я могу получить предложения о местах в EditText с помощью API Google Place?

1 Ответ

1 голос
/ 25 января 2020

Я рекомендую вам go через руководство по началу работы с Google . Затем добавьте AutocompleteSupportFragment к своей деятельности, следуя указаниям place autocomplete . См. Код ниже:

// Initialize the SDK
Places.initialize(getApplicationContext(), "YOUR_API_KEY");

// Create a new Places client instance
PlacesClient placesClient = Places.createClient(this);

// Initialize the AutocompleteSupportFragment.
AutocompleteSupportFragment autocompleteFragment = (AutocompleteSupportFragment)
        getSupportFragmentManager().findFragmentById(R.id.autocomplete_fragment);

// Specify the types of place data to return.
autocompleteFragment.setPlaceFields(Arrays.asList(Place.Field.ID, Place.Field.NAME));

// Set up a PlaceSelectionListener to handle the response.
autocompleteFragment.setOnPlaceSelectedListener(new PlaceSelectionListener() {
    @Override
    public void onPlaceSelected(Place place) {
        // TODO: Get info about the selected place.
        Log.i(TAG, "Place: " + place.getName() + ", " + place.getId());
    }

    @Override
    public void onError(Status status) {
        // TODO: Handle the error.
        Log.i(TAG, "An error occurred: " + status);
    }
});

Надеюсь, это поможет вам начать!

...