Android webview 中添加背景

来源:互联网 发布:ps字体下载for mac 编辑:程序博客网 时间:2024/04/30 13:05
WebView webView = (WebView) findViewById(R.id.webview);
                webView.setBackgroundResource(R.drawable.bg);
                webView.setBackgroundColor(Color.argb(0, 0, 0, 0));
                webView.loadUrl("file:///android_asset/gamehelp.html");