我在我的一项活动的xml视图中使用GoogleMapSupport片段。该片段目前位于我视角的150x150dip方块。我想知道是否有一种有效的方法来掩盖地图片段,使其显示为圆形而不是方形。我看了很多,发现这篇文章:Android masking background with round gradient shape
但这似乎是一个使用画布的例子,我想实际掩盖的视图是一个MapSupportFragment ..下面是一个图像,显示了我想要实现的目标,如果可能的话和我当前的xml布局。
<FrameLayout
android:id="@+id/arFrame"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true" >
</FrameLayout>
<TextView
android:id="@+id/textViewLocation"
android:layout_width="fill_parent"
android:layout_height="20dp"
android:text="no signal"
android:textAppearance="?android:attr/textAppearanceSmall" />
<fragment
android:id="@+id/map"
android:name="com.google.android.gms.maps.MapFragment"
android:layout_width="150dip"
android:layout_height="150dip"
android:layout_alignParentRight="true"
class="com.google.android.gms.maps.SupportMapFragment" />
<com.KingNozzle.Views.KNMultiDirectionalSlidingDrawer
xmlns:my="http://schemas.android.com/apk/res/com.KingNozzle"
android:id="@+id/drawer"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
my:content="@+id/content"
my:direction="topToBottom"
my:handle="@+id/handle" >
<include
android:id="@id/content"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
layout="@layout/empty_rel" />
<ImageView
android:id="@id/handle"
android:layout_width="wrap_content"
android:layout_height="40px"
android:src="@drawable/sliding_drawer_handle_bottom" />
</com.KingNozzle.Views.KNMultiDirectionalSlidingDrawer>