如何完全關閉PhoneGap Android應用程序?我嘗試過使用device.exitApp()以及navigator.app.exitApp(),並且兩者都有相同的問題。完全關閉phonegap android應用程序
問題是我有一個html文件index.html,它鏈接到一個外部html文件main.html。現在,如果我點擊關閉按鈕而不去外部文件,應用程序關閉就好了。如果我去到外部文件,然後回到索引然後點擊關閉,它會關閉索引,但會引起主要。無論我是否轉到外部頁面,如何完全關閉應用程序?
的Index.html
<html>
<head>
<script type="text/javascript" src="Scripts/phonegap-1.0.0.js"></script>
</head>
<body>
<a href="index.html">Index</a>
</body>
</html>
main.html中
<html>
<head>
<script type="text/javascript" src="Scripts/phonegap-1.0.0.js"></script>
</head>
<body>
<a href="index.html">Index</a>
</body>
</html>
Android清單
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".TestActivity"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name="com.phonegap.DroidGap"
android:label="@string/app_name" android:configChanges="orientation|keyboardHidden">
</activity>
</application>
這不是Android的工作原理。您可能會打開第二個活動實例。 – Falmarri
你是什麼意思?我擁有的唯一活動是默認活動和droidgap活動,以便外部鏈接可以正常工作。如果沒有droidgap活動,外部鏈接不會做任何事情。 – Sathariel