2011-09-14 176 views
9

如何完全關閉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> 
+0

這不是Android的工作原理。您可能會打開第二個活動實例。 – Falmarri

+0

你是什麼意思?我擁有的唯一活動是默認活動和droidgap活動,以便外部鏈接可以正常工作。如果沒有droidgap活動,外部鏈接不會做任何事情。 – Sathariel

回答

5

這是PhoneGap的Android的如何與PhoneGap的1.0.0工作。

此行爲已更改爲更像您在PhoneGap 1.1.0中所期待的內容。嘗試升級。

http://simonmacdonald.blogspot.com/2011/10/changes-in-phonegap-android-110.html

「現在,當你在那裏處理多個頁面Apps是一個變化navigator.app.exitApp()。現在,此命令退出應用程序完全不返回到前一頁。如果你想要返回一個頁面,你應該使用navigator.app.backHistory()。「

+0

有趣。感謝更新。 – Sathariel

+1

需要額外注意的是,在AndroidManifest.xml文件中,您必須將''設置爲小於5(例如:2),直到它們修復爲1.2.0。 – Devgeeks

+0

謝謝@Devgeeks。我正在使用navigator.app.exitApp(),它似乎沒有記錄?它不起作用。小於5的爲我工作。 – Navarr

相關問題