您好,我正在开发基于 phonegap 的 Android 应用程序,我使用的是 cordova 2.0,当我尝试从 sd 卡加载索引文件时,它显示发生网络错误并且不加载文件,但这仅发生在 ICS 上,但它正在工作在 3.0 及更低版本上
当我从资产加载文件时它工作正常但问题是当我从 sd 卡加载它时
这是我的代码`public class ApplicationView extends DroidGap { WebView appWebView;
@Override
public void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
String destDirectory = Environment.getExternalStorageDirectory()
+ "/DroidLibrary/leftbankappunzipped/www/LeftBankInt/index.html";
String url = "file:///" + destDirectory;
super.init();
super.clearCache();
super.clearHistory();
super.loadUrl(url,10000);
}`