PhoneGap:1.5.0,安卓:2.3.4
我在我的 HTML 中添加了一个视口标签,如下所示:
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no;">
但它不起作用。我有一个宽度 = 320px 的窗口,但它应该是 480px。
当我用谷歌搜索这个问题时,我发现了这个:
将这两行添加到onCreate()
:
this.appView.getSettings().setUseWideViewPort(true);
this.appView.getSettings().setLoadWithOverviewMode(true);
但是在我插入这两行之后,我无法再启动到 WebView 了!相反,我得到了以下异常:
ActivityThread.performLaunchActivity(ActivityThread$ActivityRecord, Intent) line: 2496
有人可以帮忙吗?