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 using ActionBar.NAVIGATION_MODE_LIST and I have a custom adapter for the Spinner.

I've been managed to do everything I needed but there's only one missing thing I can't figure out..

When an item is selected, the next time the DropDown is displayed, the previously selected options is the first one selected. I want the DropDown to display the first item from the list instead.

Is that possible?

share|improve this question

1 Answer

Call setSelectedNavigationItem() on the ActionBar. While there are issues with this when you get the Spinner in some orientations with NAVIGATION_MODE_TABS, it should work fine for NAVIGATION_MODE_LIST.

share|improve this answer
This approach has a problem.. If I do setSelectedNavigationItem(0), when the first item is touched, it doesn't call onNavigationItemSelected() because it is the same item as currently selected. To solve this I've inserted a void element as first element, which does the trick, but I was wondering if there was a better way of doing this.. – sergi Nov 2 '12 at 20:09
@sergi: "when the first item is touched, it doesn't call onNavigationItemSelected() because it is the same item as currently selected" -- so? Your UI already is showing the relevant content for the first item. Otherwise, your UI has bugs that desperately need to be fixed. What is shown in the action bar navigation always needs to match what the rest of the UI is showing. – CommonsWare Nov 2 '12 at 20:15
That's not entirely true.. Look at Gmail app.. The first element doesn't have to match the one visible in the Action Bar. – sergi Nov 2 '12 at 20:26
@sergi: "Look at Gmail app" -- I do every day. The first element always matches what is being viewed in the list. "The first element doesn't have to match the one visible in the Action Bar" -- you are certainly welcome to your opinion. – CommonsWare Nov 2 '12 at 20:29
Maybe we are not understanding each other, but in Gmail app, if you select the Sent folder, you'll see Sent in the title and Inbox as the first item in the DropDown view.. – sergi Nov 2 '12 at 20:41
show 5 more comments

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.