google cloud platform – can we get poi details from onload funtion?

For andriod googlePlaceUikit . afre all function configureFromSearchByTextRequest, we really get the place list , but still has a question: can we get details from onLoad function, since the function is already defined.

fragment.configureFromSearchByTextRequest(searchByTextRequest);
fragment.registerListener(
    new PlaceSearchFragmentListener() {
        @Override
        public void onLoad(List extends Place> places) {
        }
    }
);

can we getPlace details from onLoad function?

Read more here: Source link