PhoneGap程序出错“网页不可用”

时间:2012-04-26 09:59:36

标签: android cordova

package com.phonegap;

import org.apache.cordova.*;
import android.os.Bundle;

public class PhoneGapSampleActivity extends DroidGap {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        super.loadUrl("assets/www/index.html");
    }
}

我将此代码用于PhoneGap应用程序..

但它显示错误。enter image description here

我在assets / www文件夹中添加了index.html文件。 但它显示错误...... 任何人都可以帮助我??

提前致谢。

2 个答案:

答案 0 :(得分:1)

你忘记了file:///。请记住,拥有三个斜杠非常重要!

另外我认为它应该是android_asset而不是资产。

在我的应用中,它是:"file:///android_asset/www/index.html"

答案 1 :(得分:0)

简单的谷歌搜索来了:

phonegap doesn't work

  

解决方案是将phonegap.0.9.4.js和phonegap.0.9.4.jar重命名为phonegap.jar和phonegap.js。