Issue
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?
Solution
Find the solution from here finally.
MyView.getSettings().setLoadWithOverviewMode(true);
MyView.getSettings().setUseWideViewPort(true);
Answered By - tagtraum
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.