Trying to create a map fragment with rounded corners.

    <fragment
        android:id="@+id/map"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        class="com.google.android.gms.maps.MapFragment"/>


I then made it a child of a linearlayout 

    <LinearLayout
        android:layout_width="match_parent"
           android:layout_height="0dp"
           android:layout_weight="1"
        android:background="@drawable/panel_bg">


Where panel_bg is Shape 

<shape xmlns:android="http://schemas.android.com/apk/res/android"; 
android:shape="rectangle">
    
    
    <solid android:color="#ffffffff"/>    

    <stroke android:width="1dp"
            android:color="#FFFF0000"
            />

    <corners android:radius="5dp" />

</shape>


I'm getting everything to work - but the map is not being
clipped at the corners - it's displaying a regular non-rounded corners




-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to