Android webview auto wraps content while zoom in and out. For example, while zooming in, it wraps one line of text to next line, and therefore the layout is changed. But what I want to achieve is only zooming in without changing any layout. How to achieve it?
Asked
Active
Viewed 1,836 times
1 Answers
0
Find the solution from here finally.
MyView.getSettings().setLoadWithOverviewMode(true);
MyView.getSettings().setUseWideViewPort(true);
-
1Hi. I have further the prevent content reflow. See [here](http://stackoverflow.com/questions/14357787/how-to-stop-android-webview-content-reflow-when-double-tapped/14374230#14374230) – Yeung Jan 17 '13 at 07:39