I\'m having a problem with the OnPlaceSelectedListener method of a SupportPlaceAutocompleteFragment.
My onViewCreated()
Finally solved this problem: hope it will help someone.
I added this infamous line in the onActivityResult() method in my MainActivity
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
...
}
and then did put the same method in my MapFragment
@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
}
Now the nested fragment is sending back its data.