How do I restart an Android Activity? I tried the following, but the Activity simply quits.
Activity
public static void restartActivity(Act
This is by far the easiest way to restart the current activity:
finish(); startActivity(getIntent());