0
A
回答
1
這裏摘錄的是,我已經找到了解決辦法:
var frameModule = require("ui/frame");
var application = require("application")
var activity = application.android.startActivity ||
application.android.foregroundActivity ||
frameModule.topmost().android.currentActivity ||
frameModule.topmost().android.activity;
var lastPress;
activity.onBackPressed = function() {
var timeDelay = 500
if (lastPress + timeDelay > java.lang.System.currentTimeMillis()) {
var startMain = new android.content.Intent(android.content.Intent.ACTION_MAIN);
startMain.addCategory(android.content.Intent.CATEGORY_HOME);
startMain.setFlags(android.content.Intent.FLAG_ACTIVITY_NEW_TASK);
activity.startActivity(startMain);
// If you want to kill the app totally, use these codes instead of above
// activity.finish();
// java.lang.System.exit(0);
} else {
frameModule.topmost().goBack();
}
lastPress = java.lang.System.currentTimeMillis();
}
希望這會有所幫助。
相關問題
- 1. Codename one:應用程序應該關閉雙擊後退按鈕
- 2. 雙擊後退按鈕不起作用
- 3. nativescript - 如何模擬移動應用上的後退按鈕?
- 4. 退出應用程序上後退按鈕按不工作
- 5. 退出應用程序第二次後退按鈕點擊 - Android
- 6. 應用退出後退按鈕單擊在Android qtquick
- 7. 在退出應用程序之前按兩次後退按鈕
- 8. WP7 PhoneGap應用程序後退按鈕退出應用程序
- 9. 如何在後退按鈕上按下應用程序
- 10. 使用PhoneGap在iPhone上按鈕單擊退出應用程序
- 11. 應用按後退按鈕當按下後退按鈕
- 12. 當按下後退按鈕時退出應用程序
- 13. 向上按鈕退出應用程序?
- 14. 如何防止用戶在按下後退按鈕時退出應用程序
- 15. NativeScript +角2:後退按鈕點擊收聽
- 16. 上後退按鈕
- 17. 當用戶點擊後退按鈕退出應用程序時顯示警告
- 18. 我單擊按鈕後退出的應用程序
- 19. 退出應用程序後退按鍵
- 20. javafxports 8.60.7 - 在Android上使用後退按鈕 - 無退出應用程序
- 21. 在後退按鈕上按價格應用程序
- 22. JS後退按鈕點擊
- 23. IOS 9.3禁用iPhone上的後退按鈕後退按鈕
- 24. 如何在點擊按鈕時退出原生應用程序?
- 25. 導航應用程序 - 後退按鈕
- 26. Spring MVC應用程序(後退按鈕)
- 27. 後退按鈕關閉應用程序
- 28. 應用程序後退按鈕android
- 29. 無法在Android設備的後退按鈕上退出phonegap應用程序
- 30. 我的後退按鈕無法退出我的應用程序
'退出'是否意味着解散應用程序或完全殺死它? –
只有解僱:) –