Android 應用程序退出最小化到後臺運行

如微信。其實這種只是把程序最小化到後臺而已,本並無退出。實現這種功能有兩種方法:微信

1.直接調用系統方法spa

moveTaskToBack(isFinishing());

2.使用Intentcode

Intent intent = new Intent(Intent.ACTION_MAIN);
intent.addCategory(Intent.CATEGORY_HOME);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent);
做者:lllllliudahong 連接:https://www.jianshu.com/p/117cca90b51d 來源:簡書 著做權歸做者全部。商業轉載請聯繫做者得到受權,非商業轉載請註明出處。
相關文章
相關標籤/搜索