如何在phonegap android应用程序中显示我的应用程序的第一页?

时间:2015-06-16 09:58:18

标签: android html cordova redirect

我正在尝试使用phonegap创建应用。在iOS中,我的应用程序正常工作。但在Android中,我的应用程序的第一页无法在应用程序中运行,它始终启动系统浏览器。

https://www.youtube.com/watch?v=ix2M7XdRN7c&feature=youtu.be&t=4m12s

的index.html

<html>

<head>
    <META HTTP-EQUIV="refresh" CONTENT="0; url=http://www.google.com/">

    <meta charset="utf-8" />
    <meta name="format-detection" content="telephone=no" />
    <meta name="msapplication-tap-highlight" content="no" />
    <meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height, target-densitydpi=device-dpi" />
    <link rel="stylesheet" type="text/css" href="css/index.css" />
    <title>title</title>
</head>

<body>
    <script type="text/javascript">
        window.location.href = "http://www.google.com"
    </script>

    <a href="http://www.google.com">test link</a>
</body>

</html>

我尝试了很多方法来修复它。 ex)使用'meta tag','window.location.replace'和'window.location.href'......

但我的应用程序仍在Android平台上启动系统浏览器。

请告诉我,如何在不启动系统浏览器的情况下显示我的第一页。

1 个答案:

答案 0 :(得分:1)

您是否尝试过更改config.xml?

<content src="index.html" />