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

I'm trying to fix the issue with restarting activity on orientation changes.

I have an ActionBar with drop-down list navigation and after every rotation first element of this list is being activated. Keeping fragment content wasn't difficult, but I don't know how to set active list item.

Here is the definition of ActionBar:

getActionBar().setNavigationMode(ActionBar.NAVIGATION_MODE_LIST);
ArrayAdapter<CharSequence> list = ArrayAdapter
    .createFromResource(this, R.array.action_list, android.R.layout.simple_dropdown_item_1line);
list.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
getActionBar().setListNavigationCallbacks(list, this);

And here is my workaround:

@Override
public boolean onNavigationItemSelected(int itemPosition, long itemId) {
    if (!application.isRotated) {
        application.activePosition = itemPosition;
        application.activeId = itemId;
        getFragmentManager().beginTransaction()
            .replace(android.R.id.content, MyFragment.newInstance(itemPosition))
            .commit();
    } else {
        application.isRotated = false;
        this.onNavigationItemSelected(application.activePosition, application.activeId);            
    }
    return true;
}

@Override
protected void onStop() {
    super.onStop();
    application.isRotated = true;
}

I'm not sure it's the best solution though.

share|improve this question

3 Answers

up vote 36 down vote accepted

I just found that function. It is setSelectedNavigationItem(int position).

Set the selected navigation item in list or tabbed navigation modes.

Example:

actionBar = getActionBar();
actionBar.setNavigationMode(ActionBar.NAVIGATION_MODE_LIST);
actionBar.setListNavigationCallbacks(adapter, this);
actionBar.setSelectedNavigationItem(position);
share|improve this answer
1  
Would you mind posting an example of how you got this to work? I've been trying something like getActionBar().setSelectedNavigationItem(1) but it has no effect.. (Someone else with the same problem here: stackoverflow.com/questions/8487425/…) – brk3 Feb 11 '12 at 12:54
1  
Sure, updated my answer. Also, you can take a look at the source code of my app to see how I use it. github.com/Tsukanov/Simple-Counter/blob/master/src/me/tsukanov/… – Roman Feb 11 '12 at 16:03
Thanks, it works! I guess what I must have been doing wrong was calling the setSelectedNavigationItem before adding the adapter. Was sure I tried it that way before but oh well, works now :) – brk3 Feb 11 '12 at 17:44
1  
your link doesnt work anymore. Any new link? – Taranfx Apr 3 '12 at 5:11
1  
Sorry about that. This one should work even after I make any changes. – Roman Feb 1 at 18:32
show 2 more comments

I was also experiencing the same issue. Making a lot of research I found the solution here:

http://mohitum.wordpress.com/tutorials/android/ -->under Tip 5.

Implement OnPageChangeListener and in the onPageSelected(int position) call this method like this:

@Override
public void onPageSelected(int position) {
  mActionBar.setSelectedNavigationItem(position);
  selectInSpinnerIfPresent(position, true);
}
private void selectInSpinnerIfPresent(int position, boolean animate) {
  try {
    ActionBar actionBarView = mActionBar;
    Class<?> actionBarViewClass = actionBarView.getClass();
    Field mTabScrollViewField = actionBarViewClass.getDeclaredField(“mTabScrollView”);
    mTabScrollViewField.setAccessible(true);
    Object mTabScrollView = mTabScrollViewField.get(actionBarView);
    if (mTabScrollView == null) {
      return;
    }
    Field mTabSpinnerField = mTabScrollView.getClass().getDeclaredField(“mTabSpinner”);
    mTabSpinnerField.setAccessible(true);
    Object mTabSpinner = mTabSpinnerField.get(mTabScrollView);
    if (mTabSpinner == null) {
      return;
    }
    Method setSelectionMethod = mTabSpinner.getClass().getSuperclass().getDeclaredMethod(“setSelection”, Integer.TYPE, Boolean.TYPE);
    setSelectionMethod.invoke(mTabSpinner, position, animate);
    Method requestLayoutMethod = mTabSpinner.getClass().getSuperclass().getDeclaredMethod(“requestLayout”);
    requestLayoutMethod.invoke(mTabSpinner);
    } catch (Exception e) {
      e.printStackTrace();
    }
  }

I hope this may help someone else too.

share|improve this answer

Codesnippet on Gist

this hack around the official Android Bug did it for me, the codesnippet above did not :/

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.