How to restart Activity in Android

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

    I wonder why no one mentioned Intent.makeRestartActivityTask() which cleanly makes this exact purpose.

    Make an Intent that can be used to re-launch an application's task * in its base state.

    startActivity(Intent.makeRestartActivityTask(getActivity().getIntent().getComponent()));
    

    This method sets Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK as default flags.

提交回复
热议问题