我在Android应用中使用Google Map片段。但是,我需要像下面那样呈圆形。我该如何实现它?
Map Fragment代码段是:
<fragment
android:id="@+id/map"
android:name="com.google.android.gms.maps.SupportMapFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
/>
答案 0 :(得分:4)
如果您不需要地图是互动的(不能滑动,缩放等),那么您可以使用Google静态地图API,它会为您提供所请求地图的图像:https://developers.google.com/maps/documentation/static-maps/
然后您可以将该图像放在ImageView中,并在其上应用圆形蒙版(您可以在StackOverflow上找到很多示例)