How to restart Activity in Android

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

    Since API level 11 (Honeycomb), you can call the recreate() method of the activity (thanks to this answer).

    The recreate() method acts just like a configuration change, so your onSaveInstanceState() and onRestoreInstanceState() methods are also called, if applicable.

提交回复
热议问题