Android - WebView问题

时间:2011-03-09 13:24:00

标签: android webview shape

我正在把头发拉到这里,并对网络进行了几次解析,以了解以下内容。

我正在使用一个嵌入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>

如果有人帮我解决这个问题,我将不胜感激。

提前致谢

亚当。

2 个答案:

答案 0 :(得分: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>

答案 1 :(得分:0)

WebView webview = (WebView)findViewById(R.id.webView);        
webview.setBackgroundColor(0);

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