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 :)