How to enable zoom controls and pinch zoom in a WebView?

前端 未结 6 1326
醉酒成梦
醉酒成梦 2020-12-02 10:46

The default Browser app for Android shows zoom controls when you\'re scrolling and also allows for pinch zooming. How can I enable this feature for my own Webview?

I

6条回答
  •  情话喂你
    2020-12-02 11:39

    Inside OnCreate, add:

     webview.getSettings().setSupportZoom(true);
     webview.getSettings().setBuiltInZoomControls(true);
     webview.getSettings().setDisplayZoomControls(false);
    

    Inside the html document, add:

    
    
    
    
    
    

    Inside javascript, omit:

    //event.preventDefault ? event.preventDefault() : (event.returnValue = false);
    

提交回复
热议问题