When i set these attributes:
actionBar = getSupportActionBar();
actionBar.setDisplayHomeAsUpEnabled(true);
actionBar.setDisplayShowHomeEnabled(false);
actionBar.setDisplayShowTitleEnabled(true);
actionBar.setTitle("Title");
actionBar.setLogo(null);
actionBar.setNavigationMode(ActionBar.NAVIGATION_MODE_TABS);
The ActionBar is below its Tabs.
But if i comment this Like:
actionBar.setDisplayShowHomeEnabled(false);
It works fine. But the reason i want it to be false is, to avoid the appIcon being shown.
Thank You
I googled this problem and found this thread on gitub: https://github.com/JakeWharton/ActionBarSherlock/issues/327
You can read the thread, but the conclusion is:
I hope this helps you out,
Daniel.
i used this, and it's work on me
All post above collapsing the home icon but leaving a blank space. For avoiding that you need to set the logo size to zero . Below added my code snippet.it may help for others who struggle with same problem.thanks