How do I restart an Android Activity? I tried the following, but the Activity simply quits.
Activity
public static void restartActivity(Act
If anybody is looking for Kotlin answer you just need this line.
Fragment
startActivity(Intent.makeRestartActivityTask(activity?.intent?.component))
startActivity(Intent.makeRestartActivityTask(this.intent?.component))