0

我想将两个html页面加载到android中的两个不同的webview中。第一个html只会显示。第二个 html 应该作为背景。第二个 html 页面中使用的脚本需要运行,但它不会显示给用户。让我知道这在android中是可能的..

谢谢

4

1 回答 1

2

是的,伙计,这是可能的

添加一个WebView并将其可见性设置为View.GONE

喜欢

    WebView webView2=new WebView(this);
    webView2.setVisibility(View.GONE);

然后

       webView2.loadUrl("javascript:MyJSFunction(..)
于 2013-05-17T06:04:49.077 回答