对话框的背景颜色

时间:2014-05-15 18:52:53

标签: android background dialog

我在对话框窗口中使用以下布局:

<?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中的颜色,但没有任何反应,我仍然有白色背景。

知道如何在常规对话框中更改背景(不是警告对话框)吗?

2 个答案:

答案 0 :(得分:2)

parent view of webview中应用背景颜色。并使webview背景像这样透明。

mWebView.setBackgroundColor(0x00000000);

修改

如何制作自定义对话框?

https://stackoverflow.com/a/18224754/942224

https://stackoverflow.com/a/23109450/942224

答案 1 :(得分:0)

更改

android:colorBackground="#ff0000"

android:background="#ff0000"

代表RelativeLayout