Google SupportPlaceAutocompleteFragment has listener when address in fragment is selected with: autocompleteFragment.setOnPlaceSelectedListener
But it works only when results overlay is closed and you deal with that results. My goal is to intercept click on result on earlier stage.
What I want to do is stay on the page with autocomplete fragment and instead of closing it continue entering address. For example, autocomplete fragment suggests me street, and I want to autocomplete it and give user a chance to specify house.
Possible solution is to get place predictions programmatically and handle all UI by my own, but was hoping for an easier way.