How to restart Activity in Android

后端 未结 21 2688
日久生厌
日久生厌 2020-11-22 08:14

How do I restart an Android Activity? I tried the following, but the Activity simply quits.

public static void restartActivity(Act         


        
21条回答
  •  天命终不由人
    2020-11-22 08:19

    Well this is not listed but a combo of some that is already posted:

    if (Build.VERSION.SDK_INT >= 11) {
        recreate();   
    } else {
        Intent intent = getIntent();
        finish();
        startActivity(intent);
    }
    

提交回复
热议问题