How do I restart an Android Activity? I tried the following, but the Activity simply quits.
Activity
public static void restartActivity(Act
public void onRestart() { super.onRestart(); Intent intent=new Intent(); intent.setClass(act, act.getClass()); finish(); act.startActivity(intent); }
try to use this ..