滚动时如何使谷歌地图v2中的黑色背景透明?
<RelativeLayout
android:id="@+id/relativeLayout1"
android:layout_width="match_parent"
android:layout_height="134dp"
android:layout_alignParentTop="true"
android:layout_gravity="center" >
<fragment
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/map"
android:layout_width="fill_parent"
android:layout_height="434dp"
android:layout_marginBottom="-150dp"
android:layout_marginLeft="3dp"
android:layout_marginRight="3dp"
android:layout_marginTop="-150dp"
class="com.google.android.gms.maps.SupportMapFragment"
android:cacheColorHint="@color/transparent"
android:clickable="true" />
<FrameLayout
android:id="@+id/fram_lay"
android:layout_width="match_parent"
android:layout_height="172dp" >
<android.support.v4.view.ViewPager
android:id="@+id/fragment_container"
android:layout_width="fill_parent"
android:layout_height="134dp" >
</android.support.v4.view.ViewPager>
<FrameLayout
android:id="@+id/fram_lay2"
android:layout_width="match_parent"
android:layout_height="334dp"
android:layout_marginTop="-100dp"
android:background="@android:color/transparent"
android:cacheColorHint="#00000000" />
</FrameLayout>
</RelativeLayout>
我在地图上给出了透明框架,但它仍然在闪烁。请有人给我一个解决方案谢谢