Android:隐藏在 ViewFlipper 中的 WebView 不应用其 WebSettings
我正在开发一个在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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