在手机间隙 html 页面加载时间过长

发布于 2025-01-08 14:06:19 字数 445 浏览 0 评论 0原文

您好,我正在使用电话间隙制作应用程序,其中项目资产文件夹中的某些 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");
   }
}

Hi I am making application using phone gap in which certain html pages in asset folder of project. and I am using the code below. but it takes too much time in loading.
can any one give proper solution ?
Thanks!

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");
   }
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

流云如水 2025-01-15 14:06:19

如果 HTML 页面内有很多图像,则将该页面加载到屏幕内需要时间。

但如果这是您的项目的要求,那么您将使用进度条显示“正在加载..”,以便用户可以等待页面加载。

If their are lots Images inside the HTML page then to load that page Inside the screen It takes Time.

But if it is requirement of your project then you will use progress bar saying Loading.. so that user can wait till the page gets loaded.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文