onActivityResult() not called in new nested fragment API
I have been using the new nested fragment API that Android includes in the support library. The problem that I am facing with nested fragments is that, if a nested fragment (that is, a fragment that has been added to another fragment via the FragmentManager returned by getChildFragmentManager() ) calls startActivityForResult() , the nested fragment's onActivityResult() method is not called. However, both the parent fragment's onActivityResult() and activity's onActivityResult() do get called. I don't know if I am missing something about nested fragments, but I did not expect the described