安卓:给网页视图圆角?

2022-09-02 02:31:53

我正在尝试给我的webView圆角。

这是我的代码:

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>

这是我的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"/>

但它根本行不通!角不是圆角...


答案 1

这是Webview的一个小怪癖,它具有默认的白色背景色,在任何可绘制对象的前面绘制。您需要使用以下代码使其透明并显示可绘制的背景:

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

答案 2

唯一的方法是将 WebView 元素换行为其他视图(例如 FrameLayout),并在外部视图上应用圆角背景。例:

<FrameLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:paddingTop="10dip"
        android:paddingBottom="10dip"
        android:paddingLeft="1dip"
        android:paddingRight="1dip"
        android:background="@drawable/white_rounded_area"
        >
    <WebView
            android:id="@+id/web_view"
            android:layout_width="300dip"
            android:layout_height="400dip"
            android:layout_gravity="center"
            />
</FrameLayout>

其中填充顶部填充底部等于可绘制/white_rounded_area的半径,填充左填充右等于可绘制/white_rounded_area描边宽度。

这种方法的减号是顶部和底部圆形面板可以具有不同的背景颜色与WebView中的网页,特别是当页面滚动时。


推荐