Useful notes & manuals
from the
world wide web
L:
P:
Register now!
Restarting Activity Android
Solution from: http://stackoverflow.com/questions/1397361/how-do-i-restart-an-android-activity Created by tlw on 13.10.2024 @ 03:27

Sometimes we need to restart the Activity. Here is how we can do it:

Intent intent = getIntent();
finish();
startActivity(intent);

activity   restart
 
Created by THE LOST WEB © 2009-2012