In my application I use a ScrollView. This ScrollView contain many Webview. I change the webview font size:
webView.getSettings().setTextSize(WebSettings.TextSize.LARGER);
after I change again the font size:
webView.getSettings().setTextSize(WebSettings.TextSize.SMALLER);
The font size is changing, but the webview layout height is not changing. The text is smaller and there are a big space. There are any method to this problem?