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

  • Home
  • SEARCH
  • 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 8186635
In Process

The Archive Base Latest Questions

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

In my application,I have four tabs at the bottom.Each tab has multiple activities.In order

  • 0

In my application,I have four tabs at the bottom.Each tab has multiple activities.In order to maintain multiple activities in a single tab I used concept of TabGroupActivity.My question is ,when I click on a particular tab ,its starting activity has to be restarted while some child activity of that Tab is in onResume() state.For clear understanding,

  Tab1-A-->B-->C-->D-->E.
  Tab2-M-->N-->B-->C-->D-->E.
  Tab3-P.
  Tab4-X-->Y-->B-->C-->D-->E.

when I press on Tab1,A activity has to be restarted while one of the B or C or D or E activities are in onresume() state.likewise,the same for the Tab2,Tab4 has to be done.can some one please provide me with sample code as I am a fresher.Thanks in advance.

  • 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:16:44+00:00Added an answer on June 7, 2026 at 2:16 am

    I found the solution for my question,I just override the onResume() method in TabGorupActivity.
    My TabGroupActivity is

     package com.rmn.hrt;
    
        import java.util.ArrayList;
    
    
    
        import android.app.Activity;
        import android.app.ActivityGroup;
        import android.app.AlertDialog;
        import android.app.LocalActivityManager;
        import android.content.DialogInterface;
        import android.content.Intent;
        import android.os.Bundle;
        import android.view.KeyEvent;
        import android.view.Window;
    
        /**
         * The purpose of this Activity is to manage the activities in a tab.
         * Note: Child Activities can handle Key Presses before they are seen here.
         * @author Eric Harlow
         */
        public class TabGroupActivity extends ActivityGroup {
    
            private ArrayList<String> mIdList;
    
            @Override
            public void onCreate(Bundle savedInstanceState) {
                super.onCreate(savedInstanceState);    
    
                if (mIdList == null) mIdList = new ArrayList<String>();
            }
    
            /**
             * This is called when a child activity of this one calls its finish method. 
             * This implementation calls {@link LocalActivityManager#destroyActivity} on the child activity
             * and starts the previous activity.
             * If the last child activity just called finish(),this activity (the parent),
             * calls finish to finish the entire group.
             */
          @Override
          public void finishFromChild(Activity child) {
              LocalActivityManager manager = getLocalActivityManager();
              int index = mIdList.size()-1;
    
              if (index < 1) {
                  finish();
                  return;
              }
    
              manager.destroyActivity(mIdList.get(index), true);
              mIdList.remove(index); index--;
              String lastId = mIdList.get(index);
              Intent lastIntent = manager.getActivity(lastId).getIntent();
              Window newWindow = manager.startActivity(lastId, lastIntent);
              setContentView(newWindow.getDecorView());
          }
    
          /**
           * Starts an Activity as a child Activity to this.
           * @param Id Unique identifier of the activity to be started.
           * @param intent The Intent describing the activity to be started.
           * @throws android.content.ActivityNotFoundException.
           */
          public void startChildActivity(String Id, Intent intent) {     
              Window window = getLocalActivityManager().startActivity(Id,intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP));
              if (window != null) {
                  mIdList.add(Id);
                  setContentView(window.getDecorView()); 
              }    
          }
    
          /**
           * The primary purpose is to prevent systems before android.os.Build.VERSION_CODES.ECLAIR
           * from calling their default KeyEvent.KEYCODE_BACK during onKeyDown.
           */
          @Override
          public boolean onKeyDown(int keyCode, KeyEvent event) {
              if (keyCode == KeyEvent.KEYCODE_BACK) {
                  //preventing default implementation previous to android.os.Build.VERSION_CODES.ECLAIR
                  return true;
              }
              return super.onKeyDown(keyCode, event);
          }
    
          /**
           * Overrides the default implementation for KeyEvent.KEYCODE_BACK 
           * so that all systems call onBackPressed().
           */
          @Override
          public boolean onKeyUp(int keyCode, KeyEvent event) {
              if (keyCode == KeyEvent.KEYCODE_BACK) {
                  onBackPressed();
                  return true;
              }
              return super.onKeyUp(keyCode, event);
          }
    
          /**
           * If a Child Activity handles KeyEvent.KEYCODE_BACK.
           * Simply override and add this method.
           */
          @Override
          public void  onBackPressed  () {
              int length = mIdList.size();
              if ( length > 1) {
                  Activity current = getLocalActivityManager().getActivity(mIdList.get(length-1));
                  current.finish();
              }
        }
     //Removing all string identifiers for the child activities
    // except the first activity from mIdList and showing it's view
        @Override
        protected void onResume() {
             LocalActivityManager startManager=getLocalActivityManager();
                int index = mIdList.size() - 1;
                while(index>=1){
                startManager.destroyActivity(mIdList.get(index), true);
                mIdList.remove(index);
                index--;
                }
                String lastId = mIdList.get(index);
                Intent lastIntent = startManager.getActivity(lastId).getIntent();
                Window newWindow =startManager.startActivity(lastId, lastIntent);
                setContentView(newWindow.getDecorView());
            super.onResume();
        }
    
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am using tab host(tabs) in application, it have four tabs on home screen,
I've created a tab bar application. I have four tabs; on the selected tab,
I have used tabbar with activity group in my application. I have four tab
In my application I have a tab bar. It contains four tabs in which
I my application am using four tabs . Each tab contains an acticity. So
I have an tabbar-application with four tabs. Every tab loades an nib with its
I have an Android application which has four tabs (I use a main TabActivity
I am working on an application which uses bump technology.I do have four tab
I have an application with four tabs. Two of the tabs use location updates
I have an TabBar application with 4 tabs. All four tabs have navigation controllers.

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.