Is it possible to pinch to zoom in cordova

心不动则不痛 提交于 2019-12-01 01:49:27

In the native code just after this line

super.loadUrl(Config.getStartUrl());

Add this

WebSettings settings = super.appView.getSettings();
settings.setBuiltInZoomControls(true);
settings.setDisplayZoomControls(true);
settings.setSupportZoom(true);

You'll need this in native part

import android.webkit.WebSettings;

And in the page you want to zoom, add this

<meta name="viewport" content="user-scalable=yes,initial-scale=1, maximum-scale=5, minimum-scale=0.25/>

This will allow you to zoom the whole page with pinch. Everything inside that page will be zoomed.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!