2

phonegap を使用して、html5 Web ページを表示するネイティブ 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."})
4