Reputation: 19
It is possible to disable auto wrap lines and enable horizontal scrollbar in WebView component on Android?
Thanks for help.
Regards.
Upvotes: 1
Views: 936
Reputation: 5600
Divide this in 2 parts:
Disable auto wrap lines:
webView.getSettings().setLoadWithOverviewMode(true);
To enable horizontal scrollbar use:
webView.getSettings().setUseWideViewPort(true);
Upvotes: 2