在android webview中设置透明色

VaM*_*pir 2 android transparent webview chromakey

如何在android webview中设置透明色?

<div style="background-color: black" >test</div>
Run Code Online (Sandbox Code Playgroud)

如何使整个页面的黑色透明(如抠像)?

Sab*_*abo 8

与WebView有同样的问题,因为它在不同的OS版本中随机运行.Finnlay我在loadDataWithBaseURL()调用之后使用此代码修复它:

if (Build.VERSION.SDK_INT >= 11) {
    webView.setBackgroundColor(0x01000000);
} else {
    webView.setBackgroundColor(0x00000000);
}
Run Code Online (Sandbox Code Playgroud)

我认为这将为设备提供一些东西,因此各种缓存机制都不会启动.但结果实际上与完全透明度相同,因为普通人眼无法察觉.

没有注意到性能损失.

经过多种设备测试,范围从2.2到4.2.

干杯