Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a SherlockFragmentActivity which has an ActionBar using setNavigationMode to NAVIGATION_MODE_TABS. I using the following code to swap different Fragments in and out of the view.

public void onTabSelected(Tab tab, FragmentTransaction ft) {  

        ft = getSupportFragmentManager().beginTransaction();
        mFragment = mActivity.getSupportFragmentManager().findFragmentByTag(mTag);

        if (mTag == "home") {
            getSupportFragmentManager().popBackStack(null, 0);
        }

        if (mFragment == null) {  
            mFragment = Fragment.instantiate(mActivity, mClass.getName());
            ft.addToBackStack(mTag);
            ft.replace(android.R.id.content, mFragment, mTag);
            ft.commit();   
        } else {  
            ft.addToBackStack(mTag);
            ft.replace(android.R.id.content, mFragment, mTag);
            ft.commit(); 
        }  

    }  

    public void onTabUnselected(Tab tab, FragmentTransaction ft) {  

    }  

    public void onTabReselected(Tab tab, FragmentTransaction ft) { 

    }

If I select a new tab, the Fragment is displayed and functions properly. The select tab also receives the highlight on the bottom. If I then use the Back Button to return to a previous fragment, the Fragment is returned to the previous fragment properly, BUT the highlight remains under the previously selected tab (i.e. it doesn't swap to the tab that was selected with that Fragment). The tabs are swapping Fragments in and out of the same Activity.

I have also tried using popBackStack(String name) and the same thing occurs. The Fragment swaps correctly, but the selected (highlighted) tab does not.

I am new to Android programming and not sure what I am missing to make the correct tab highlight when the using the Back Button or popBackStack.

Thank you in advance for everyones assistance.

share|improve this question
Personally, I would not use addToBackStack() with tabs. – CommonsWare Jun 15 '12 at 19:54
What would you recommend as the best way to approach this? Thank you for your time. – Stephen Cauthen Jun 23 '12 at 19:55
"What would you recommend as the best way to approach this?" -- um, by not using addToBackStack() with tabs. Have BACK finish the activity as normal. Allow the user to switch between tabs by tapping on the tabs. – CommonsWare Jun 23 '12 at 19:57

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.