com.google.android.maps.MapView
控件可以顯示地圖。
您可以通過(guò)XML布局或代碼實(shí)例化此控件,但使用它的活動(dòng)必須延伸 MapActivity
。
MapActivity
負(fù)責(zé)處理多線程請(qǐng)求以加載地圖,執(zhí)行緩存,等等。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent"> // w ww.ja v a2 s . co m <com.google.android.maps.MapView android:layout_width="fill_parent" android:layout_height="fill_parent" android:enabled="true" android:clickable="true" android:apiKey="myAPIKey" /> </LinearLayout>
更多建議: