アクティビティの途中で地図を表示したい。
Google マップ V1 では、次を使用します -
<com.google.android.maps.MapView
android:id="@+id/mapview"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:apiKey="@string/api_map_key"
android:clickable="true"
android:enabled="true" />
MapActivity クラスを使用してアクティビティを拡張します。
Versing 2 では、mapview の代わりに Fragment を使用し、通常のアクティビティではなく FragmentActivity によってアクティビティを拡張する必要があります。元-
<fragment
android:id="@+id/map"
android:layout_width="match_parent"
android:layout_height="match_parent"
class="com.google.android.gms.maps.SupportMapFragment" />
バージョン2を使用してフラグメントの代わりにマップビューを作成するために同じ方法を使用できますか.()
誰でも V2 を使用して MapView を使用できますか?