Customize ActionBar in Android using ActionbarSherlock and jeremyfeinstein slidingmenu-open source projects jfeinstein10/SlidingMenu
Aspicas
Implement “Sliding Menu” it’s perfect with Sherlock ActionBar
Link library
https://github.com/jfeinstein10/SlidingMenu
VideoTutorial for implement two libraries
EDIT
//pre-ICS
if (actionBarSherlock instanceof ActionBarImpl) {
enableEmbeddedTabs(actionBarSherlock);
//ICS and forward
} else if (actionBarSherlock instanceof ActionBarWrapper) {
try {
Field actionBarField = actionBarSherlock.getClass().getDeclaredField("mActionBar");
actionBarField.setAccessible(true);
enableEmbeddedTabs(actionBarField.get(actionBarSherlock));
} catch (Exception e) {
Log.e(TAG, "Error enabling embedded tabs", e);
}
}
//helper method
private void enableEmbeddedTabs(Object actionBar) {
try {
Method setHasEmbeddedTabsMethod = actionBar.getClass().getDeclaredMethod("setHasEmbeddedTabs", boolean.class);
setHasEmbeddedTabsMethod.setAccessible(true);
setHasEmbeddedTabsMethod.invoke(actionBar, true);
} catch (Exception e) {
Log.e(TAG, "Error marking actionbar embedded", e);
}
}
look that link:
https://groups.google.com/forum/#!topic/actionbarsherlock/hmmB1JqDeCk
When you had tabs on your action bar you can asing one style for your tabs, border, backgroundImage, gravity and you give button appearance.
Look:
Try it and tell us.