void GotoMainActivity(){
        Intent intent = new Intent(ProductionInformationActivity.this, MainActivity.class);
        //跳到MainActivity时清除掉ProductionInformationActivity
        intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK | Intent.FLAG_ACTIVITY_NEW_TASK);
        startActivity(intent);
    }

 

相关文章:

  • 2022-01-07
  • 2021-11-29
  • 2022-12-23
  • 2022-01-23
  • 2021-11-29
  • 2022-12-23
猜你喜欢
  • 2021-11-29
  • 2021-11-29
  • 2021-06-20
  • 2021-07-29
  • 2021-11-29
  • 2021-11-29
  • 2021-11-29
相关资源
相似解决方案