Android Web Browsing Troubleshooting

Hi, I can pinch an image in a web browser while working properly. Scaling works fine, but the problem reduces the scale. The image becomes small and small. How can I limit image size reduction?

+5
source share
1 answer
    mWebView.getSettings().setSupportZoom(true);  
    mWebView.getSettings().setBuiltInZoomControls(true);
+13
source

All Articles