20

我试图给我的 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
        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"/>

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

4

6 回答 6

26

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

WebView webview = (WebView)findViewById(R.id.webView1);        
webview.setBackgroundColor(0);
于 2012-08-13T02:08:09.070 回答
18

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

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

其中paddingToppaddingBottom等于drawable/white_rounded_area的半径, paddingLeftpaddingRight等于笔划宽度drawable/white_rounded_area

这种方法的缺点是顶部和底部的圆形面板可以与 WebView 内的网页具有不同的背景颜色,尤其是在页面滚动时。

于 2012-09-19T09:07:18.150 回答
7

您可以使用 CardView 来包含 webview,您只需要添加您想要的角半径app:cardCornerRadius

    <android.support.v7.widget.CardView
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            app:cardCornerRadius="10dp">                    // HERE

            <WebView
                android:id="@+id/webView"
                android:layout_width="match_parent"
                android:layout_height="match_parent" />

    </android.support.v7.widget.CardView>

就这样

于 2019-03-12T19:16:54.200 回答
4

试试这个

<shape xmlns:android="http://schemas.android.com/apk/res/android" 
         android:shape="rectangle" >

    <corners 
       android:bottomRightRadius="10dp" android:bottomLeftRadius="10dp" 
       android:topLeftRadius="10dp" android:topRightRadius="10dp"/>

      <stroke
        android:color="@drawable/black"
        android:width="3dp"/>

</shape>
于 2012-07-26T18:18:59.017 回答
0

我使用了一个看起来像相框的图像,我给相框加上了圆角。我把这个相框放在我试图给圆角的视图上。

解决了 iBog 的背景面板解决方案中的问题。


诀窍是使用RelativeLayout; 把你的布局放在里面。在您的布局下方,添加另一个ImageView,将其设置background为合适的遮罩图像框架。这会将其绘制在您的其他布局之上。

在我的例子中,我制作了一个灰色背景的 9Patch 文件,并从中切出一个透明的圆角矩形。

框架

这为您的底层布局创建了完美的掩码。

XML 代码可能是这样的:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_height="wrap_content" android:layout_width="fill_parent">

    <!-- ... INSERT ANY VIEW HERE ... -->

    <!-- FRAME TO MASK UNDERLYING VIEW -->
    <ImageView android:layout_height="fill_parent" 
        android:layout_width="fill_parent" 
        android:background="@drawable/grey_frame"
        android:layout_alignTop="@+id/mainLayout"
        android:layout_alignBottom="@+id/mainLayout" />

</RelativeLayout>

完整的详细信息可以在我的原始答案中找到:

于 2014-06-03T14:20:44.783 回答
0

没有一个解决方案对我有用。它对我有用。在加载数据之前,您需要设置

webView.getSettings().setUseWideViewPort(true);

并应用您在 XML 文件中可绘制。

它对我有用。

于 2018-04-18T13:19:40.480 回答