How to restart Activity in Android

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

    If anybody is looking for Kotlin answer you just need this line.

    Fragment

    startActivity(Intent.makeRestartActivityTask(activity?.intent?.component))
    

    Activity

    startActivity(Intent.makeRestartActivityTask(this.intent?.component))
    

提交回复
热议问题