I would like to create a circular map fragment view
<fragment xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/map"
android:transitionName="@string/map"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:layout_width="200dp"
android:layout_height="200dp"
tools:context="com.example.gyang.android.MapActivity"
class="com.google.android.gms.maps.SupportMapFragment"/>
Currently my fragment is a big square. What is the easiest way to turn this into a circle?