Make content to scale and fit with PhoneGap (using viewport)

后端 未结 2 1089
礼貌的吻别
礼貌的吻别 2021-01-18 02:19

I am trying to adapt and port an old project to PhoneGap.

So far, the project works properly under Android browsers but it doesn\'t with PhoneGap since it doesn\'t a

2条回答
  •  太阳男子
    2021-01-18 03:11

    Try

    
    

    or If you add the following lines to your onCreate() method:

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

    or try using iScroll 4 (http://cubiq.org/iscroll-4) Pinch / Zoom

提交回复
热议问题