In native code immediately after this line
super.loadUrl(Config.getStartUrl());
Add this
WebSettings settings = super.appView.getSettings(); settings.setBuiltInZoomControls(true); settings.setDisplayZoomControls(true); settings.setSupportZoom(true);
You will need it in the native part
import android.webkit.WebSettings;
And on the page you want to enlarge, 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 in on the entire page. Everything inside this page will be enlarged.
source share