简体   繁体   中英

How to finish TabGroupActivity from another TabGroupActivity in android

I've three tabs which has Tab group activity for each tab. Now I want to finish second tabgroup activity(parent & all child below that) from third tab. For ex.

Tab1->parent1->child1->child1
Tab2->Parent2->child2->child2
Tab3->Parent3->child3->child3

I want to finish Tab2 tabGroupActivity from child3. How could I do that? Thanks.

I have finished my Activity by overriding this method:

@override
protected void onPause() {
        // TODO Auto-generated method stub
        super.onPause();
        finish();
    }

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM