I want to declare a custom view, BUT I also want the home logo with up icon to appear on the left with its default functionality. How can I achieve to use both?

link|improve this question

50% accept rate
feedback

2 Answers

up vote 7 down vote accepted

Best way is to use XML styles:

<style name="Theme.Main" parent="android:Theme.Holo.Light">
    <item name="android:actionBarStyle">@style/Widget.ActionBar</item>
</style>

<style name="Widget.ActionBar" parent="android:Widget.Holo.Light.ActionBar">
    <item name="android:displayOptions">showHome|useLogo|showCustom</item>
    <item name="android:customNavigationLayout">@layout/custom</item>
</style>

Then simply set this theme as either the application theme or activity them in AndroidManifest.xml

link|improve this answer
You can also do the same in code without any theme changes: getActionBar().setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM|ActionBar.DISPLA‌​Y_USE_LOGO|ActionBar.DISPLAY_SHOW_HOME); – Joe Hughes Feb 28 at 15:27
feedback

I find an Action Bar open source project. You can get it here: https://github.com/johannilsson/android-actionbar/

Here is the resut screenshot:

Action Bar

link|improve this answer
don't go off-topic. Everyone knows ActionBAr sherlock is the best if he wants an alternate actionbar. – geeknizer Apr 5 at 7:25
Agree with you that ActionBarSherlock is the best. But for simple project, sometimes I prefer android-actionbar. – anticafe Apr 5 at 9:07
Well this is not SherlockActionBar iis johannilsson implementation that is not exactly an action bar but a custom component that mimic the Actionbar github.com/johannilsson/android-actionbar/blob/master/…, a real Action bar relies on the OS and changed the way menus are displayed generally with a custom Inflater. Sherlock is a cool implementation but sometimes to too much things have been added to it. – Necronet Apr 26 at 15:11
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.