Android: Go back to previous activity

前端 未结 23 1583
抹茶落季
抹茶落季 2020-11-22 06:52

I want to do something simple on android app. How is it possible to go back to a previous activity.

What code do I need to go back to previous activity

23条回答
  •  栀梦
    栀梦 (楼主)
    2020-11-22 07:21

    if you want to go to just want to go to previous activity use

    finish();
    

    OR

    onBackPressed();
    

    if you want to go to second activity or below that use following:

    intent = new Intent(MyFourthActivity.this , MySecondActivity.class);
    intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
    //Bundle is optional
    Bundle bundle = new Bundle();
    bundle.putString("MyValue1", val1);
    intent.putExtras(bundle);
    //end Bundle
    startActivity(intent);
    

提交回复
热议问题