This is a follow up question to this question:
Force application to restart on first activity
I am trying to restart my application from a fragment like that:
Intent i = getBaseContext().getPackageManager() .getLaunchIntentForPackage( getBaseContext().getPackageName() ); i.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); finish(); startActivity(i);
You can refer to previous discussion (click here)