2

我正在为此烦恼,并多次解析网络以了解以下内容。

我正在使用一个嵌入 WebView 的简单 Activity:

<?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 没有得到我试图设置的任何外观(没有圆角等......)。

我尝试应用的形状代码:

<?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>

我将感谢任何可以帮助我解决此问题的人。

提前致谢

亚当。

4

2 回答 2

2

我也面临同样的问题。后来我知道我们不能改变 webView 背景。您可以更改布局背景。我已经尝试过这种方法工作正常。

<TableRow
    android:id="@+id/tableRow5"

    android:background="@drawable/fullshape"

    android:layout_width="300dp"
    android:layout_height="300dp"
    android:layout_marginLeft="10dp"
    android:layout_marginRight="10dp"
    android:layout_marginTop="10dp"
    android:layout_marginBottom="10dp" >

    <WebView
        android:id="@+id/webView1"
        android:layout_width="280dp"
        android:layout_height="280dp"
        android:layout_marginLeft="10dp"
        android:layout_marginRight="10dp"
        android:layout_marginTop="10dp"
        android:layout_marginBottom="10dp" />

</TableRow>
于 2012-04-27T10:27:11.707 回答
0
WebView webview = (WebView)findViewById(R.id.webView);        
webview.setBackgroundColor(0);

通过应用透明背景色,webview 将使用布局中的背景。

于 2015-03-02T14:06:10.107 回答