我正在为此烦恼,并多次解析网络以了解以下内容。
我正在使用一个嵌入 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>
我将感谢任何可以帮助我解决此问题的人。
提前致谢
亚当。