android - Remove multiple Activities to go Back to Dashboard from Options menu -
i have optionsmenu in android app, in button go apps dashboad , remove activities laying upon that, removing history. how possible?
thx
got answer:
that's trick:
myintent.addflags(intent.flag_activity_clear_top);
public boolean onoptionsitemselected(menuitem item) { // handle item selection switch (item.getitemid()) { case r.id.dashboard: intent myintent = new intent(this, dashboard.class); myintent.addflags(intent.flag_activity_clear_top); startactivity(myintent); return true; default: return super.onoptionsitemselected(item); } }
that's trick:
myintent.addflags(intent.flag_activity_clear_top);
Comments
Post a Comment