在活动中显示谷歌地图(不是MainActivity)

时间:2014-05-18 09:07:02

标签: java android eclipse google-maps-android-api-2 google-maps-api-2

我想在我的Android应用程序中显示谷歌地图。 我发现了一个例子,我把它放在主要活动中。这没有任何问题。为了改进我的应用程序,我现在想将地图外包给另一个活动(称为DisplayMapActivity)。单击“显示地图”按钮时,将调用地图活动。但我的应用程序崩溃,我得到一个nullpointer异常。

我的项目是example.com.lbsapp2,这里有一些代码:

MainActivity.java:

public void openMap(View view) {
    Intent intent = new Intent(this, DisplayMapActivity.class);
    startActivity(intent);
}

单击按钮时调用此方法。它应该打开地图。

activity_main.xml中:

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.lbsapp2.MainActivity"
tools:ignore="MergeRootFrame" />

fragment_main.xml:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/welcome" />

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:onClick="openMap"
        android:text="@string/button_map" />

</LinearLayout>

DisplayMapActivity.java:

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    map = ((MapFragment) getFragmentManager().findFragmentById(R.id.map)).getMap();
}

这在MainActivity.java中没有任何问题,所以代码应该没问题。

activity_display_map.xml(布局):

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

之前在activity_main.xml中,并且工作正常。

清单应该没有问题,以及以前的清单。

1 个答案:

答案 0 :(得分:0)

DisplayMapActivity更改此

setContentView(R.layout.activity_main);

setContentView(R.layout.activity_display_map);

原因MapFramgent位于activity_display_map.xml

getMap()也可以返回null。因此,请在初始化GoogleMap对象

之前检查Google Play服务的可用性