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

您必须扩展 com.google.android.gms.maps.SupportMapFragment 而不是 android.support.v4.app.FragmentActivity

于 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 回答