Skip to content

Commit

Permalink
A method to remove the "home" action, though really all it does is hide
Browse files Browse the repository at this point in the history
it.  I'm a bit unsure of what the right implementation is for this,
though I know I need the functionality.
  • Loading branch information
obra committed Mar 5, 2011
1 parent da687d2 commit 9df99aa
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions actionbar/src/com/markupartist/android/widget/ActionBar.java
Expand Up @@ -83,6 +83,10 @@ public void setHomeAction(Action action) {
mHomeLayout.setVisibility(View.VISIBLE);
}

public void clearHomeAction() {
mHomeLayout.setVisibility(View.GONE);
}

/**
* Shows the provided logo to the left in the action bar.
*
Expand Down

0 comments on commit 9df99aa

Please sign in to comment.