显示带有phonegap的网页

发布于 2024-12-09 01:03:31 字数 74 浏览 0 评论 0原文

使用phonegap为android平台制作一个应用程序。 我想显示应用程序内某个选项卡的网页。 iFrame 无法工作,我该怎么做?

Making an app with phonegap for the android platform.
I want to show a webpage from a certain tab from within the application.
An iFrame is not working, how could I do this?

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

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

发布评论

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

评论(2

两仪 2024-12-16 01:03:31

您的意思是您想要在同一个 WebView 中打开站点中的其他网页,而不是在单独的浏览器窗口中打开它们(默认行为)?

如果是这样,在 PhoneGap 1.1.0 中,您可以使用以下代码重写项目中 DroidGap 子类的 onCreate() 方法:

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    super.setBooleanProperty("loadInWebView", true);
    super.loadUrl("file:///android_asset/www/index.html");
}

如果您需要从多个网站或域加载页面,则需要一种不同的方法:

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    super.addWhiteListEntry("yourdomainhere.com", true);
    super.addWhiteListEntry("anotherdomainhere.com", true);
    super.addWhiteListEntry("yetanotherdomainhere.com", true);
    super.loadUrl("file:///android_asset/www/index.html");
}

为了防止页面加载之间出现令人不安的黑屏,您可以在 super.onCreate() 语句之后添加以下代码:

    super.setIntegerProperty("backgroundColor", Color.WHITE);
    super.setStringProperty("loadingPageDialog", "Loading page...");

Do you mean that you want to open other web pages from your site in the same WebView instead of opening them in a separate browser window (the default behavior)?

If so, in PhoneGap 1.1.0, you can override the onCreate() method of the DroidGap subclass in your project with the following code:

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    super.setBooleanProperty("loadInWebView", true);
    super.loadUrl("file:///android_asset/www/index.html");
}

If you need to load pages from more than one website or domain, you will need a different approach:

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    super.addWhiteListEntry("yourdomainhere.com", true);
    super.addWhiteListEntry("anotherdomainhere.com", true);
    super.addWhiteListEntry("yetanotherdomainhere.com", true);
    super.loadUrl("file:///android_asset/www/index.html");
}

To prevent an unsettling black screen between page loads, you can add the following code right after the super.onCreate() statement:

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