2

問題があります。MapView を使用でき、マップが正しく表示されます。

 <com.google.android.gms.maps.MapView xmlns:android="http://schemas.android.com/apk/res/android"
      android:id="@+id/map"
      android:layout_width="match_parent"
      android:layout_height="match_parent"/>

しかし、MapFragment を使用するとアプリがクラッシュします... クラス フラグメントの拡張エラー:

<fragment xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/map"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        class="com.google.android.gms.maps.SupportMapFragment"/>

main.java だけです:

public class situar_mapav3 extends android.support.v4.app.FragmentActivity{

    public situar_mapav3() {


    }
        @Override
        protected void onCreate(Bundle savedInstanceState) {

            super.onCreate(savedInstanceState);
     }

何か案が ?ありがとう。

4

2 に答える 2

3

android.support.v4.app.FragmentActivity の代わりに com.google.android.gms.maps.SupportMapFragment を拡張する必要があります

于 2013-04-22T12:01:10.840 に答える
0

このレイアウトを使用してみてください。logcat ログを投稿してください。問題をよりよく理解するのに役立ちます。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/mapParent"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <fragment
        android:id="@+id/map"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"
        class="com.google.android.gms.maps.SupportMapFragment" />
</LinearLayout>
于 2013-04-22T11:28:07.960 に答える