我拉我的頭髮,並已解析網絡多次瞭解以下內容。Android - WebView的問題
我用一個簡單的活動中嵌入一個web視圖:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">
<WebView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/webview"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@drawable/tables"
</LinearLayout>
正如你所看到的,我想申請一個繪製形狀(android:background="@drawable/tables"
),從而使的WebView有圓角,中風邊界,...
問題是,WebView沒有得到我想設置的任何apparence(沒有圓角等)。
形狀的代碼,我想申請:
<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="@color/fond_tables"/>
<corners android:bottomRightRadius="10dp"
android:bottomLeftRadius="10dp"
android:topLeftRadius="10dp"
android:topRightRadius="10dp"/>
<stroke android:width="3dp"
android:color="@color/bordure_tables" />
</shape>
我將不勝感激的人誰可以幫我解決這個問題。
在此先感謝
亞當。
任何人都可以幫助我嗎? – 2011-03-11 07:46:07