i use Sherlock Actionbar
1, i wanna change Home Button BG when i press from blue to Red
2, i wanna change HomeAsUp icon (white arrow) any idea ?

Home button

pressed
here is created this actionbar code
extends SherlockFragmentActivity
public ActionBar actionBar;
this.actionBar = this.getSupportActionBar();
this.actionBar.setDisplayShowHomeEnabled(true);
this.actionBar.setHomeButtonEnabled(true);
this.actionBar.setDisplayHomeAsUpEnabled(true);
You can change this by specifying your own
actionBarItemBackgroundattribute in your theme.For example,
and then specify
Theme.MyThemein the manifest for your activity.