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

Popular posts from this blog

php - What is the difference between $_SERVER['PATH_INFO'] and $_SERVER['ORIG_PATH_INFO']? -

fortran - Function return type mismatch -

queue - mq_receive: message too long -