I am trying to set custom icon for home icon using ActionBarSherlock library. I have tried to set custom layout using abHomeLayout attribute in my custom theme. But it didn't work for me. Only way, how to set it, is to set abIcon attribute for my custom drawble, but I cannot set some horizontal padding for this drawable. Is there any example for this or where could be a problem with abHomeLayout attribute?

link|improve this question

71% accept rate
feedback

2 Answers

I had similar issue with incorrect padding of the home icon on devices api<11 (i.e not the fully fledged platform action bar) and the abHomeLayout style only worked api>11

My solution was to copy the abs__action_bar_home.xml layout from ABS to child project and manually add padding to the abs__home imageview

<ImageView
    android:id="@+id/abs__home"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center"
    android:paddingTop="@dimen/action_bar_home_icon_top_bottom_padding"
    android:paddingBottom="@dimen/action_bar_home_icon_top_bottom_padding"
    android:paddingLeft="@dimen/action_bar_home_icon_left_right_padding"
    android:paddingRight="@dimen/action_bar_home_icon_left_right_padding"
    android:scaleType="centerInside" />
link|improve this answer
Was there anything else you needed to add to your style etc. to allow this to take effect? I've copied the same file into res/layout/ of my project, but the tweaks to the padding don't seem to be working.. – brk3 Feb 26 at 16:34
feedback

Define an own style, like this:

<resources>
  <style name="Theme.OwnTheme" parent="@style/Theme.Sherlock">
    <item name="abBackground">#476dd5</item>
    <item name="abHeight">30dip</item>
  </style>
</resources>

I think here your can use abHomeLayout. Set this style for your activity like this:

<activity 
 android:name=".MainActivity" 
 android:theme="@style/Theme.OwnTheme">
   <intent-filter>
        <action android:name="android.intent.action.MAIN" />
        <category android:name="android.intent.category.LAUNCHER" />
   </intent-filter>
</activity>

In MainActivity you can use getSupportActionBar()... functions.

link|improve this answer
Thanks. I have tried abHomeLayout as mentioned above. Without success, so I would need a working example. – sealskej Nov 1 '11 at 10:36
This is an example of how to use ABS but doesn't answer the question at all – David Caunt Jan 6 at 17:37
feedback

Your Answer

 
or
required, but never shown

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