I know there are a few questions like this but what I'm looking for is slightly different the way I see it.
THE PROBLEM
I have one Activity
and I am only ever going to have one Activity
.
I do however have multiple Fragments
; one of which contains a MapView
.
I have successfully got this working in API level 3.0
and greater. However, the problems start when I want to go lower than this using the compatibility library as I then need to make my Activity
extend FragmentActivity
to get Fragments
to work and then I obviously lose the ability to also extend MapActivity
THE QUESTION
How can I use the Compatibility Support Library
to enable the use of Fragments
and a MapView
within the same Activity
?
Any help would be greatly appreciated.
P.S I personally think it's ridiculous they didn't include support for this within the Compatibility Support Library
.