I would like to know how do you make an app restart COMPLETELY clicking on a preference. Can you give me some code snippet? I would like that clicking on a preference with written Reboot it restart the application completely
Asked
Active
Viewed 232 times
0
-
Why do you think you need this? – Diego Torres Milano Jul 19 '13 at 05:08
-
Simply because i need of the possibility to restart my application – Luigi Massimini Jul 19 '13 at 05:14
-
Try this. (use search in future) [http://stackoverflow.com/questions/2470870/force-application-to-restart-on-first-activity-android/3772987#3772987][1] [1]: http://stackoverflow.com/questions/2470870/force-application-to-restart-on-first-activity-android/3772987#3772987 – Vyacheslav Jul 19 '13 at 05:22
1 Answers
0
try this..
Intent i = new Intent(this, Home.class);
i.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
startActivity(i);
finish();

Sunny
- 14,522
- 15
- 84
- 129