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
  • 24,284
  • 11
  • 75
  • 95

1 Answers1

0

try this..

    Intent i = new Intent(this, Home.class);
    i.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
    startActivity(i);
    finish();
Sunny
  • 13,864
  • 15
  • 78
  • 126