我正在开展一个项目,我需要在圆圈内显示地图。如何在圆圈内显示地图视图。
答案 0 :(得分:1)
您可以使用FrameLayout构建布局。第一个项目必须是MapView,然后是一个引用该圆圈透明的png的ImageView。希望有所帮助。
编辑添加示例:
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<com.google.android.maps.MapView
android:id="@+id/mapview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:clickable="true"
android:apiKey="whateverYourApiKeyIs"/>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/fullSizeImageWithTransparentCircle"/>
</FrameLayout>
答案 1 :(得分:0)
既然你写了这么糟糕的问题。请允许我以同样的方式回答 以mapview为例 用圆角打造它的风格
我甚至会给你一个link to round corners