Android 将 WebView 复制到 Webview

发布于 2024-10-21 13:59:35 字数 269 浏览 0 评论 0原文

我正在开发一个以本地 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

已下线请稍等 2024-10-28 13:59:35

您必须从布局中删除当前的 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 a FrameLayout 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文