我正在努力创建一个具有透明背景的 WebView。
webView.setBackgroundColor(0x00FFFFFF);
webView.setBackgroundDrawable(myDrawable);
然后我加载一个 html 页面
<body style="background-color:transparent;" ...
WebView 的背景颜色是透明的,但是一旦加载页面,它就会被来自 html 页面的黑色背景覆盖。这只发生在 android 2.2上,它可以在 android 2.1上工作。
那么,是否需要在 html 页面代码中添加一些东西来使其真正透明呢?