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 8816987
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T04:44:39+00:00 2026-06-14T04:44:39+00:00

I have four activities a,b,c,d. Activity a is the main activity which then calls

  • 0

I have four activities a,b,c,d. Activity a is the main activity which then calls b,c and d which then does some computation. I know I can prevent the activity from building up in my application by android:noHistory="true" attribute in those activites . But the issue is if I am in activity c,when I press the back button I want to go to b, but if d finishes I want b and c to be removed and only a to displayed. Is there any way to achieve this?

  • 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-14T04:44:40+00:00Added an answer on June 14, 2026 at 4:44 am

    Put this code in each of your activities, changing it slightly each time. That way you override the back button’s normal function

        @Override
        public boolean onKeyDown(int keyCode, KeyEvent event)  {
            if (keyCode == KeyEvent.KEYCODE_BACK
                    && event.getRepeatCount() == 0) {
                //start the desired activity
            }
    
            return super.onKeyDown(keyCode, event);
        }
    

    Also, if you are only supporting android 2.0+ then you can use this

    @Override
    public void onBackPressed() {
        // start your desired activity here
        return;
    }
    

    Just put either of these in each of your activities, then start the correct activity

    To close one specific activity, look at this page – How to clear specific activity from the stack history?

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

Sidebar

Related Questions

I have four activities namely, Demo_tabActivity.java [main activity] Tabhost.java The below two activities are
I have four activities namely, Demo_tabActivity.java [main activity] Tabhost.java The below two activities are
I need some help :) I have a tab activity with four sub activities.
I have a Weather app with four Activities. The main/launcher activity is 'invisible' using...
I have four activities A,B,C,D. I am passing an text from activity A to
I have four classes which share some arrangement of four properties. I have currently
I am a beginner in android. I have four stages (four activities). In activity
I have four activities, A, B, C and D. app starts with activity A,
I have four activity in my tasks A,B,C,D. Activities are launched in order A->B->C->D.
I have four classes User profiles Activity Workbook user can have many profiles based

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.