Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8188491
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T02:56:05+00:00 2026-06-07T02:56:05+00:00

I would like to modify the back stack in my Android application as such:

  • 0

I would like to modify the back stack in my Android application as such:

Right now, here is the flow:

A -> B -> C -> D -> E -> F

I want to be able to modify the back stack, so that when the user goes to activity F, D and E are erased from the stack. so the flow is F -> C if the user hits the back.

Also, from F, the user is able to go to activity B, this should erase C, D, E, and F as well.

I’ve seen some information on being able to clear the stack, or remove the top item, but I want to remove a number of items from the stack, when an activity is triggered.

Any help is appreciated, thanks very much.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-07T02:56:07+00:00Added an answer on June 7, 2026 at 2:56 am

    You can build an intent with the flag intent.FLAG_ACTIVITY_CLEAR_TOP from F to C. Then you will have to call startActivity() with the intent and trigger this to occur onBackPressed or something similar.

    Intent i = new Intent(this, C.class);
    intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP|Intent.FLAG_ACTIVITY_SINGLE_TOP);
    startActivity(i)
    

    See this answer, which also deals with ensuring that C won’t be restarted when you navigate back to it: https://stackoverflow.com/a/11347608/1003511

    What FLAG_ACTIVITY_CLEAR_TOP will do is go go back to the most recent instance of activity C on the stack and then clear everything which is above it. However, this can cause the activity to be re-created. If you want to ensure it will be the same instance of the activity, use FLAG_ACTIVITY_SINGLE_TOP as well. From the documentation:

    The currently running instance of activity B in the above example will
    either receive the new intent you are starting here in its
    onNewIntent() method, or be itself finished and restarted with the new
    intent. If it has declared its launch mode to be “multiple” (the
    default) and you have not set FLAG_ACTIVITY_SINGLE_TOP in the same
    intent, then it will be finished and re-created; for all other launch
    modes or if FLAG_ACTIVITY_SINGLE_TOP is set then this Intent will be
    delivered to the current instance’s onNewIntent().

    Edit: Here is a code sample similar to what you want to do:

    @Override
    public boolean onKeyDown(int keyCode, KeyEvent event) {
        if (keyCode == KeyEvent.KEYCODE_BACK) {
            Intent a = new Intent(this, C.class);
            a.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP|Intent.FLAG_ACTIVITY_SINGLE_TOP);
            startActivity(a);
            return true;
        }
        return super.onKeyDown(keyCode, event);
    }
    

    code sample source: https://stackoverflow.com/a/9398171/1003511

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

We have a customer that would like to modify application user messages that we
I'm using HighLine to write my console application and I would like to modify
I have code, similar to the following, that I would like to modify: Sub
I have several PDF templates that I would like to load and modify and
Suppose I have a table that contains valid data. I would like to modify
I would like modify HTML like I am <b>Sadi, novice</b> programmer. to I am
I would like to modify an object private variable class Example(): __myTest1 = 1
I'm absolutely new to JavaScript and would like to modify a textarea of a
I would like to select a node and modify its attributes and child-nodes using
I would like to load a HTML document and modify it's text in PHP.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.