I want to use Actionbarsherlock to align tabs at the bottom of the layout. If fragments are viewed above it, not below it.
How to do it? currently in onCreatei doing
getSupportActionBar().setNavigationMode(ActionBar.NAVIGATION_MODE_TABS);
getSupportActionBar().setDisplayShowHomeEnabled(false);
getSupportActionBar().setDisplayShowTitleEnabled(false);`
and do not see the obvious function in getSupportActionBar(), which facilitates its position on the screen.
Acumen appreciated
source
share