7

当将 Google 的 DrawerLayout 放置在带有地图片段的活动中时,我遇到了问题。我没有尝试过使用 MapView,但是我担心问题会保持不变。

我正在使用支持库(v13)中的谷歌 DrawerLayout,并在其中放置一张地图。

通过图像可以更好地解释我遇到的问题...在 2.2-2.3 (在 4.0+ 上很好),如果在绘制谷歌地图片段的任何地方都不会出现抽屉。视图的其余部分以及视图上的小部件会正确着色,但地图不会。

这是我的 xml 布局

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout
        xmlns:map="http://schemas.android.com/apk/res-auto"
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="match_parent">
    <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:orientation="vertical"
            android:weightSum="4">
        <fragment
                android:id="@+id/map"
                android:layout_width="match_parent"
                android:layout_height="0dp"
                android:layout_weight="3"
                android:name="com.google.android.gms.maps.SupportMapFragment"
                android:scrollingCache="false"
                map:cameraTargetLat="39.828325"
                map:cameraTargetLng="-98.579728"
                map:cameraZoom="2"
                map:cameraTilt="0"
                map:cameraBearing="0"/>
        <LinearLayout
                android:id="@+id/map_fragmentHolder"
                android:layout_height="0dp"
                android:layout_width="match_parent"
                android:orientation="vertical"
                android:layout_weight="1" />
    </LinearLayout>
    <include
        layout="@layout/menu_layout"
        android:layout_height="wrap_content"
        android:layout_width="match_parent"
        android:layout_gravity="start" />

</android.support.v4.widget.DrawerLayout>

这是在 2.x 设备上看到的,屏幕截图是在 Android 调试监视器中截取的,正方形应该是我的 DrawerLayout 的按钮之一

安卓 2.x

它应该是这样的:

安卓 4.x

我担心这是由于 Gmaps 对象是在 FrameLayout 上绘制的,但我真的不知道。

有人遇到这个问题或对如何解决有想法吗?谢谢。

4

1 回答 1

10

我遇到了这个问题,我尝试了这个解决方案:https ://stackoverflow.com/a/16231935/267559 。它对我有用。请试一试。

于 2013-06-24T17:08:12.897 回答