Android : Finish Activity from other Activity -
i having application in using menu , on tap on menu item redirecting specified activity.
i want make sure when redirected menu item current activity should finished reduce stackflow of activity , better performance.
so when tap on tapped activity selected menu activity should redirected activity , finish current activity.
so wondering there way can finish activity current activity. or should override onkeydown method..
any on this
thanks in advance
you can do:
intent intent = new intent(....) ; // intent launch new activity // fire intent finish(); // finish current activity
Comments
Post a Comment