I struggled with the same for several hours. With the latest version of phonegap, I managed as follows:
In your main java add the following lines BEFORE super .loadUrl (blablabla
super.init(); super.appView.getSettings().setUseWideViewPort(true); super.appView.getSettings().setLoadWithOverviewMode(true);
This will allow the user to double-tap to zoom in / out. So change your meta:
<meta name = "viewport" content = "width = 685; target-density-dpi = device-dpi; initial-scale = 0.1; maximum-scale = 0.1; user-scaleable = no;" />
It worked for me with Phonegap 3.0 and Android> = 4
source share