How to enable pinch zoom on a web view loading a url with pdf(Android)?

前端 未结 3 1212
闹比i
闹比i 2020-12-15 02:30

Pinch zoom works fine on a webView that loads a regular url, if I enable the settings as below,

myWebView.getSettings().setBuiltInZoomControls(true); //this          


        
3条回答
  •  情话喂你
    2020-12-15 02:43

    Old question, but here's a solution I found.

            WebView mWebView = (WebView) findViewById(R.id.webView);
            mWebView.getSettings().setJavaScriptEnabled(true);
            WebSettings webSettings = mWebView.getSettings();
            webSettings.setBuiltInZoomControls(true);
            webSettings.setSupportZoom(true);
    

    Hope this helps!

提交回复
热议问题