How to restart Activity in Android

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

    The solution for your question is:

    public static void restartActivity(Activity act){
        Intent intent=new Intent();
        intent.setClass(act, act.getClass());
        ((Activity)act).startActivity(intent);
        ((Activity)act).finish();
    }
    

    You need to cast to activity context to start new activity and as well as to finish the current activity.

    Hope this helpful..and works for me.

提交回复
热议问题