lixplor / android-Q-A

🐞 android related questions and answers
0 stars 0 forks source link

WebView底色如何变透明 #40

Closed lixplor closed 7 years ago

lixplor commented 7 years ago

WebView底色如何变透明

lixplor commented 7 years ago

原因: 底色有两部分, 一部分是Webview控件的底色, 另一部分是html页面的底色 解决:

webview.setBackgroundColor(0); //先设置颜色, 但不管用
webview.getBackground().setAlpha(0); //然后获取颜色, 再修改透明度才管用