I have been able to customize the action bar's background, logo image and text color using suggestions from these :

Android: How to change the ActionBar "Home" Icon to be something other than the app icon?

ActionBar text color

ActionBar background image

The last piece I want to customize is the backbutton image. It's grey by default and I would like it to be white. Either changing the color, specifying a drawable or simply making it transparent (and adding the chevron to my customized logo image) would work. How do I go about that? Thanks in advance!

link|improve this question
There is no BACK button on the action bar. The BACK button is on the system bar, or is not on the screen (for devices with an off-screen BACK button). – CommonsWare Feb 12 at 20:55
@CommonsWare, I am not sure what the 'left chevron' in the action bar is called - but that's one I am referring to as the back button. I think it is expected to replace the physical back button on android devices going forward. – Sunil Gowda Feb 13 at 1:49
No and no. That is the "up" indicator (despite the arrow orientation). You enable it via setDisplayHomeAsUpEnabled() on ActionBar. It is specifically NOT supposed to simply go "back". It means that tapping the app icon will go "up" a hierarchy rather than back to the previous activity (as does the BACK button on the system bar). – CommonsWare Feb 13 at 12:16
@CommonsWare, so what about the new devices that do not have a physical back button, do they all display a 'soft' back button. I have seen a couple of tablets do that. In that case, can I customize the up button to be white instead of the default grey? – Sunil Gowda Feb 13 at 18:16
"so what about the new devices that do not have a physical back button, do they all display a 'soft' back button" -- they all should have a BACK button in the system bar. – CommonsWare Feb 13 at 19:01
show 1 more comment
feedback

1 Answer

up vote 7 down vote accepted

The "up" affordance indicator is provided by a drawable specified in the homeAsUpIndicator attribute of the theme. To override it with your own custom version it would be something like this:

<style name="Theme.MyFancyTheme" parent="android:Theme.Holo">
    <item name="android:homeAsUpIndicator">@drawable/my_fancy_up_indicator</item>
</style>

If you are supporting pre-3.0 with your application be sure you put this version of the custom theme in values-v11 or similar.

link|improve this answer
that worked. thanks Jake! – Sunil Gowda Feb 13 at 23:11
works for me too. I was declaring inside the style set as my ActionBarStyle as in AOSP on github but it was not working - moving out into the main theme did the trick! +1 – Dori Mar 28 at 16:59
feedback

Your Answer

 
or
required, but never shown

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