0

我在我的项目中使用了 Google map API v2,在布局文件中我使用了我附加的以下代码。它运行良好,但在 UI 设计中,滚动活动时会形成黑色层

在此处输入图像描述

代码:

<ScrollView
-----
--->

<LinearLayout
-----
----->
//bla bla bla
<fragment
    xmlns:map="http://schemas.android.com/apk/res-auto"
        android:id="@+id/mapview1"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        class="com.google.android.gms.maps.MapFragment" 
         map:cameraZoom="15"
       />

//bla bla bla
</LinearLayout
-----
----->
</ScrollView
-----
--->
4

1 回答 1

0

另一种替代解决方案是使用新GoogleMap.snapshot()功能,并使用地图截图代替;如此处所述。

于 2013-08-13T15:01:11.883 回答