我刚刚从分包商那里收到了 PhoneGap 解决方案,以便在发布前在我的手机上进行测试。
我将项目导入 Eclipse,一切看起来都很好。
我可以通过打开 index.html 文件在我的计算机上本地测试应用程序:
file://E:/AppDevelopment/Workspace/myproject/assets/www/index.html
到现在为止还挺好。然后我尝试在我的手机上启动它(通过 USB 电缆)。首页打开,但缺少 CSS。当我单击任何链接时,我会收到以下消息:
"A network error occurred. (file:///android_asset/www/car.html?carID=106"
有没有人遇到过类似的问题?关于如何调试错误的任何建议?
更新
按照 Dmyto 的建议,我正在尝试更改 onReceivedError。但我只会遇到编码错误。
package com.phonegap.mysite;
import android.os.Bundle;
import org.apache.cordova.*;
import android.webkit.WebView;
import android.webkit.WebViewClient;
public class Mysiteextends DroidGap {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
super.loadUrl("file:///android_asset/www/index.html");
}
/** This is where it goes wrong **/
WebView webview = new WebView(this);
webview.setWebViewClient(new WebViewClient() {
@Override
public void onReceivedError(WebView view, int errorCode, String description, String failingUrl) {
Log.i("WEB_VIEW_TEST", "error code:" + errorCode);
super.onReceivedError(view, errorCode, description, failingUrl);
}
}