Display Google Maps In Tab Using Fragmenttabhost
I'm trying to implement tabs for navigation in an Android app using this tutorial from Krishnabhadra Tab1 -> Frag1 -> Frag2 Tab2 -> Frag3 Tab3 -> Frag4 Everything wo
Solution 1:
You are trying to use nested fragments in a way that is not supported by the framework.
Instead of what you are doing now you have to use getChildFragmentManager()
to add SupportMapFragment
via code and not through xml.
Read on nested fragments and take a look at my answer here.
Post a Comment for "Display Google Maps In Tab Using Fragmenttabhost"