Android 将 WebView 复制到 Webview
我正在开发一个以本地 html 文件作为源的 webview。 我正在尝试将一个 Web 视图复制到另一个 Web 视图。 如果我这样做。
WebView1.loadUrl(webView2.getUrl());
我可以工作,但它与再次加载网络视图相同,这是我不想要的。如果我这样做
WebView1=WebView2;
它不会复制。 WebView1 的内容不会改变。我做错了什么吗。
I am working on a webview with local html file as source.
I am trying to copy a Webview on to another webview.
If I do this.
WebView1.loadUrl(webView2.getUrl());
I works, but it is same as loading the webview again,which i dont want. If I do this
WebView1=WebView2;
It doesn't copy. The content of WebView1 doesn't change. Am I doing anything wrong.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须从布局中删除当前的 WebView(通过在其容器上调用
removeView(WebView1)
),然后向其中添加新的 WebView (addView(WebView2)
在同一个容器上)。显然,您必须注意将其再次插入到正确的位置。最简单的方法是在它周围包裹一个 FrameLayout 并调用它的方法。但不能向您保证这会起作用,因为我不知道
WebView
在屏幕外的行为方式。You'll have to remove the current WebView from your Layout (by calling
removeView(WebView1)
on it's container) and then add the new WebView to it (addView(WebView2)
on the same container). Obviously you'll have to take care that it gets inserted at the right place again. Easiest way would be to just wrap aFrameLayout
around it and call said methods on it.Can't promise you that this will work though, since I don't know how
WebView
behaves offscreen.