Android:给webview圆角?
我想给我的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"/>
但这根本行不通!角不是圆的…
回答:
唯一的方法是用其他视图(例如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>
其中 和 等于
半径, 和 等于 宽度 。
这种方法的缺点是顶部,底部圆形的面板可以与WebView中的网页具有不同的背景颜色,尤其是在滚动页面时。
以上是 Android:给webview圆角? 的全部内容, 来源链接: utcz.com/qa/420023.html