Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ShareActionProvider with a split ActionBar

I'm using a ShareActionProvider and would like to take advantage of the split ActionBar when there isn't enough room for it at the top - android:uiOptions="splitActionBarWhenNarrow".

The action works fine when the ActionBar does not need to split:

landscape

However when the ActionBar does need to split, the ActionProvider seems to break the lower ActionBar layout completely. It fills the entire viewport below the top ActionBar and the action itself does not appear:

portrait

Has anyone been able to use these two features together successfully?

like image 518
Jeff Gilfelt Avatar asked Feb 06 '12 15:02

Jeff Gilfelt


Video Answer


1 Answers

This has been fixed in the dev branch of ActionBarSherlock- https://github.com/JakeWharton/ActionBarSherlock/issues/505

You could try that instead.

UPDATE: Now fixed in ActionBarSherlock 4.2.0

like image 55
qubz Avatar answered Oct 21 '22 20:10

qubz