我在对话框窗口中使用以下布局:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:colorBackground="#ff0000">
<WebView
android:id="@+id/webViewNote1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:colorBackground="#ff0000" />
正如您所看到的,我尝试更改RelativeLayout和WebView中的颜色,但没有任何反应,我仍然有白色背景。
知道如何在常规对话框中更改背景(不是警告对话框)吗?
答案 0 :(得分:2)
在parent view of webview
中应用背景颜色。并使webview背景像这样透明。
mWebView.setBackgroundColor(0x00000000);
修改强>
如何制作自定义对话框?
答案 1 :(得分:0)
更改
android:colorBackground="#ff0000"
到
android:background="#ff0000"
代表RelativeLayout