0

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

Alex Shesterov
  • 26,085
  • 12
  • 82
  • 103

1 Answers1

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