MapView显示空白,但MapFragments工作正常

问题描述 投票:0回答:1

您好,我在我的应用程序中使用基于片段的布局 - 一切都很顺利 - 我正在使用一个特殊的 MapFragment 和一些其他 PageFragment 来显示数据。 MapFragment 工作正常 - 地图显示没有问题,我可以在上面绘图等。

现在我想将小地图视图添加到我的 PageFragments 之一中。

我尝试过:

<com.google.android.gms.maps.MapView
        xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:map="http://schemas.android.com/apk/res-auto"
        android:id="@+id/mapView"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="#00000000"
        android:clickable="true"
        map:uiCompass="true"
        map:uiZoomControls="true"
        map:zOrderOnTop="true" >
    </com.google.android.gms.maps.MapView>

没有 XML 错误等。应用程序工作正常 - 我的 PageFragment 正确显示,但地图视图仍为空白。有什么想法吗?

android google-maps fragment
1个回答
10
投票

您必须从 Activity 或 Fragment 转发生命周期方法才能使 MapView 正常工作。特别是:

  • onCreate(捆绑)
  • onResume()
  • onPause()
  • onDestroy()
  • onSaveInstanceState()
  • onLowMemory()

http://developer.android.com/reference/com/google/android/gms/maps/MapView.html

以防万一有人错过了,这适用于 Google Maps API v2。如果您不重写这些方法,您可能仍然会看到地图网格、地图控件等,但地图图像不可见。

© www.soinside.com 2019 - 2024. All rights reserved.