Android: daj zaokrąglony róg w przeglądarce internetowej?

Próbuję podać moim zaokrąglonym rogom webView.

Oto mój kod:

rounded_webview.xml:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" android:padding="10dp">
 <solid android:color="#000"/>
    <corners
     android:bottomRightRadius="15dp"
     android:bottomLeftRadius="15dp"
  android:topLeftRadius="15dp"
  android:topRightRadius="15dp"/>
</shape>

A oto mój webView:

<WebView
        android:id="@+id/webView1"
        android:layout_width="293dp"
        android:layout_height="142dp"
        android:layout_gravity="center_horizontal"
        android:padding="5dip"
        android:background="@drawable/rounded_webview"/>

Ale to po prostu nie zadziała! Narożniki nie są zaokrąglone ...

questionAnswers(6)

yourAnswerToTheQuestion