Android:隐藏在 ViewFlipper 中的 WebView 不应用其 WebSettings

发布于 2024-10-23 16:06:47 字数 347 浏览 3 评论 0原文

我正在开发一个在 ViewFlipper 中有多个 WebViews 的应用程序。当我尝试同时调整所有 Web 视图的字体大小(通过调用 getSettings().setTextSize(TextSize))时,只有翻转器中的当前视图会更新字体大小。我还尝试重新加载(webView.reload())隐藏视图,但它根本不起作用。

我能得到的最接近的结果是当网页视图成为活动视图时重新加载它们,但是在字体大小更新之前会有几秒钟的延迟(而且我认为页面重新加载无论如何都不是一个好的答案。 ..)。

有谁知道如何更新 ViewFlipper 中的所有视图?感谢您的回答:)

I am working on an app that has multiple WebViews in a ViewFlipper. When I try to adjust the font size for all the webviews at the same time (by calling getSettings().setTextSize(TextSize)) only the current view in the flipper updates the font size. I also tried reloading (webView.reload()) the hidden views but it does not work at all.

The closest I have been able to get is by reloading the web views when they become the active view, but then there is a delay of few seconds until the font size updates (and I think page reloading is not a good answer to this anyway...).

Does anyone know how to update all views that are in a ViewFlipper? Thanks for your answers :)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

潦草背影 2024-10-30 16:06:47

viewflipper 内的所有视图都会在您启动或创建 Activity 时启动(取决于您的代码),因此翻转您的 Web 视图不会更新。您应该在 OnFling() 函数内进行编码以进行 webview 更新,在下面的链接中,您可能会寻找它。

Android ViewFlipper 不翻转

All view inside viewflipper are initiated when you start or create Activity(depend on your code), so on flipping your web view is not updating. You should code inside OnFling() function for webview update, below link, you may looking for that..

Android ViewFlipper not flipping

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