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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T18:26:56+00:00 2026-05-25T18:26:56+00:00

i have TabAvtivity, in which under particular Tab i have a single Tab GroupActivity

  • 0

i have TabAvtivity, in which under particular Tab i have a single Tab GroupActivity ,under this group i have 3 activities. here is the below format.

TabActivity–>Tab1 Tab2 Tab3

under Tab2 –> TabGroupActivity.

under TabGroupActivity–> Activiy1 –> Activity 2 –> Activity 3.

the problem is under TabGroupActivity if i select Activity 2 from Activity 1 . and when i press back from Activity 2. the Activity 1 is restarting. i dont want this to be happened. same with Activity 2 and three

here is my TabGroupActivity

public class TabGroupActivity extends ActivityGroup {

        private ArrayList<String> mIdList;

        static boolean restartFlag=false;

        @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) 
        {
            restartFlag=true;

            Log.e("finishFromChild","finishFromChild");
            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.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP));

            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.
        *///Intent.FLAG_ACTIVITY_REORDER_TO_FRONT | Intent.FLAG_ACTIVITY_PREVIOUS_IS_TOP

        public void startChildActivity(String Id, Intent intent) {

            Window window;
            Log.e("startChildActivity","startChildActivity");

                window = getLocalActivityManager().startActivity(Id,intent.addFlags(Intent.FLAG_ACTIVITY_PREVIOUS_IS_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 () 
        {

            Log.e("onBackPressed","Back Came Here");

            int length = mIdList.size();

            Log.d("onBackPressed",String.valueOf(length));

            if ( length >= 1) 
            {
                Activity current = getLocalActivityManager().getActivity(mIdList.get(length-1));
                current.finish();
            }

         }
}   
  • 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-05-25T18:26:57+00:00Added an answer on May 25, 2026 at 6:26 pm

    @ E-Madd

    here i will post the answer. the actual problem was with destroy() method of ActivityGroup (which is a bug), so use this custom destroy method to solve the problem.

               public boolean destroy(String id , LocalActivityManager manager) {
    
        if(manager != null){
            manager.destroyActivity(id, false);
            try {
                final Field mActivitiesField = LocalActivityManager.class.getDeclaredField("mActivities");
                if(mActivitiesField != null){
                    mActivitiesField.setAccessible(true);
                    @SuppressWarnings("unchecked")
                    final Map<String, Object> mActivities = (Map<String, Object>)mActivitiesField.get(manager);
                    if(mActivities != null){
                        mActivities.remove(id);
                    }
                    final Field mActivityArrayField = LocalActivityManager.class.getDeclaredField("mActivityArray");
                    if(mActivityArrayField != null){
                        mActivityArrayField.setAccessible(true);
                        @SuppressWarnings("unchecked")
                        final ArrayList<Object> mActivityArray = (ArrayList<Object>)mActivityArrayField.get(manager);
                        if(mActivityArray != null){
                            for(Object record : mActivityArray){
                                final Field idField = record.getClass().getDeclaredField("id");
                                if(idField != null){
                                    idField.setAccessible(true);
                                    final String _id = (String)idField.get(record);
                                    if(id.equals(_id)){
                                        mActivityArray.remove(record);
                                        break;
                                    }
                                }
                            }
                        }
                    }
                }
            } catch (Exception e) {
                e.printStackTrace();
            }
    
            return true;
        }
    
        return false;
    } 
    

    and also paste this below line

              Window newWindow = manager.startActivity(lastId, lastIntent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP));
    

    and dont add any flags while starting the activity. and also you can refer this link for more info destroyActivity() Bug in LocalActivityManager class in Android issue

    This is working fine for me.

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

Sidebar

Related Questions

In android I have an TabActivity (A) in which I create a single tab
Here's the problem. In my app, I have 5 tabs which contains activities. In
I have a TabActivity with a tab, which shows a list. I'd like to
So, in my program i have a TabActivity which contains two tabs, one tab
I have a TabActivity that shows other Activities as the content based on which
I have a TabActivity with a single ListView inside TabHost's FrameLayout. This ListView is
My main activity is a TabActivity. I have some activities presented by the tab
I currently have a TabActivity which has 4 tabs, within one of the tab's
i have TabActivity in android project which contains some tabs. In each tab i
I have a TabActivity with three tabs defined. The first tab is light-weight and

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.