_____________class provide functionality to get the MapView which is used to display the map.
-
MapController
-
Overlay
-
MapActivity
-
None of above
C
Correct answer
Explanation
MapActivity is the base Activity class that provides access to a MapView. When you extend MapActivity, you can call getMapView() or access the map through layout inflation. The Activity hosts the map and provides the context in which the MapView operates. MapController is for controlling the map, Overlay is for drawing on it, but MapActivity provides the MapView itself.