Multiple choice technology platforms and products

_____________class provide functionality to get the MapView which is used to display the map.

  1. MapController

  2. Overlay

  3. MapActivity

  4. None of above

Reveal answer Fill a bubble to check yourself
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.