android 仿qq微信退出进入数据不用重新加载

时间:2021-02-19 23:44:39

qq微信退出之后在进入,它们都不会重新加载数据,一般情况下按下返回键activity就走了onDestroy()了,在进去就会重新走onCreate(),什么方法能在按下返回的时候,不走onDestroy(),转入后台运行,那就是按home键了,仿按下home键的代码:

  Intent intent = new Intent(Intent.ACTION_MAIN);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.addCategory(Intent.CATEGORY_HOME);
startActivity(intent)