How to restart Activity in Android

后端 未结 21 2469
日久生厌
日久生厌 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:27

    public void onRestart() {
        super.onRestart();
        Intent intent=new Intent();
        intent.setClass(act, act.getClass());
        finish();
        act.startActivity(intent);
    }
    

    try to use this ..

提交回复
热议问题