Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想将两个html页面加载到android中的两个不同的webview中。第一个html只会显示。第二个 html 应该作为背景。第二个 html 页面中使用的脚本需要运行,但它不会显示给用户。让我知道这在android中是可能的..
谢谢
是的,伙计,这是可能的
添加一个WebView并将其可见性设置为View.GONE
WebView
View.GONE
喜欢
WebView webView2=new WebView(this); webView2.setVisibility(View.GONE);
然后
webView2.loadUrl("javascript:MyJSFunction(..)