您好我正在使用手机间隙进行申请,其中某些html页面在项目的资产文件夹中。我正在使用下面的代码。但是加载需要太多时间。 谁能给出适当的解决方案? 谢谢!
public class JvdActivity extends DroidGap {
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
super.init();
KeyBoard keyboard = new KeyBoard(this, appView);
appView.addJavascriptInterface(keyboard, "KeyBoard");
super.loadUrl("file:///android_asset/www/index.html");
}
}
答案 0 :(得分:0)
如果他们在HTML页面内有很多图像,那么加载该页面在屏幕内需要时间。
但是如果它是你的项目的要求那么你将使用进度条说Loading ..所以用户可以等到页面加载。