A Anuj_Singh Member Licensed User Longtime User May 20, 2014 #1 Hello All, I want to close all Activities which are running, how should it done on one Button Click. or Is there any option like Activity.Finish("ActivityName") Thanks in Advance
Hello All, I want to close all Activities which are running, how should it done on one Button Click. or Is there any option like Activity.Finish("ActivityName") Thanks in Advance
I Inman Well-Known Member Licensed User Longtime User May 20, 2014 #2 Try ExitApplication, although it is not usually recommended. The recommended practice is to close the current activity with Activity.Finish and let Android system decide when to kill the other activities. Upvote 0
Try ExitApplication, although it is not usually recommended. The recommended practice is to close the current activity with Activity.Finish and let Android system decide when to kill the other activities.