您好,我在我的应用程序中使用基于 Fragment 的布局 - 一切正常 - 我正在使用一个特殊的 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 正确显示,但地图视图保持空白。有任何想法吗?