Android Question webview

Devv

Active Member
Licensed User
Longtime User
hello

can i disable the zoom in and out icon in webview (-|+) and keep finger zooming ?
 

mangojack

Well-Known Member
Licensed User
Longtime User
WebViewExtras ....
B4X:
  'initialize web extras ' allow pinch zoom (.zoom enabled = True)  and hide zoom controls (.SetDisplayZoomControls= False)
   WebViewExtras1.Initialize(WebView1)
  WebViewExtras1.ZoomEnabled=True  '  True is the default setting
  WebViewExtras1.GetSettings.SetDisplayZoomControls(False)
 
Upvote 0
Top