I am working on an Android Tablet application, one of the Class involves displaying a bunch of text and data lists along with a Map. So far all my text and data components are in place and only the Map needs to be inserted, The usage of the MapView means I need to extend MapActivity instead of just extending Activity.
What is the solution to this? Should I rewrite my Class extending MapActivity or is there any way to write a separate class with MapActivity extended for the MapView and then embed that class within my original Class.
If the latter solution is feasible how how would I go about doing it?
