Phonegap无法在Android模拟器上工作(未找到index.html)

时间:2013-05-31 08:24:32

标签: javascript android html5 cordova

我正在使用phonegap创建一个显示html5网页的原生Android应用程序,问题是在模拟器上,应用程序产生应用程序错误说:

"the connection to the server was unsuccesfull(file://android_assets/www/index.html)"

同一个应用程序在我的HTC One X上发布正常,所以我不认为这是我的代码的问题。

这是我的安卓代码

public class MainScreen extends DroidGap
{
    private Caller caller;


    private static final String Wrapper = "Wrapper";


    @Override
    public void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        super.init();
        caller = new Caller(this,appView);
        appView.addJavascriptInterface(caller, Wrapper);
        super.loadUrl(Config.getStartUrl());
        //super.loadUrl("file:///assets/www/index2.html");
        // Set by <content src="index.html" /> in config.xml







public class Caller {

    private Wrapper mwrapper;
    private String serverDomain;
    private String serverFromIp;
    private String serverToIp;
    private String username;
    private String password;
    private WebView mWebView;
    private DroidGap mGap;

    public Caller(DroidGap gap, WebView webview){
        mGap = gap;
        mWebView = webview;
        mwrapper = new Wrapper();

        //TODO: figure out a way to handle callback

    }
    @JavascriptInterface
    public int register(){

    }
    @JavascriptInterface
    public void send(String message){

    }
        }

栈跟踪

05-31 09:27:09.690: E/CordovaWebView(1642): CordovaWebView: TIMEOUT ERROR!
05-31 09:27:09.690: D/Cordova(1642): CordovaWebViewClient.onReceivedError: Error code=-6 Description=The connection to the server was unsuccessful. URL=file:///android_asset/www/index.html
05-31 09:27:09.700: D/DroidGap(1642): onMessage(onReceivedError,{"errorCode":-6,"url":"file:\/\/\/android_asset\/www\/index.html","description":"The connection to the server was unsuccessful."})

1 个答案:

答案 0 :(得分:6)