Disable zoom control in WebView using Android 7 API

I want to disable zoom control in WebView. I use this code to hide the control:

web.getSettings().setDisplayZoomControls(false); 

but this code can be used in Android with API 11 and how to disable it using API 7 ??

+4
source share
1 answer

Check this out: enable / disable scaling in Android WebView There is an implementation for which you want to achieve.

+1
source

Source: https://habr.com/ru/post/1433720/


All Articles