We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c51bb4d commit a8743f1Copy full SHA for a8743f1
core/java/com/android/internal/widget/ActionBarView.java
@@ -537,7 +537,7 @@ public void setDisplayOptions(int options) {
537
538
if ((flagsChanged & DISPLAY_RELAYOUT_MASK) != 0) {
539
final boolean showHome = (options & ActionBar.DISPLAY_SHOW_HOME) != 0;
540
- final int vis = showHome ? VISIBLE : GONE;
+ final int vis = showHome && mExpandedActionView == null ? VISIBLE : GONE;
541
mHomeLayout.setVisibility(vis);
542
543
if ((flagsChanged & ActionBar.DISPLAY_HOME_AS_UP) != 0) {
0 commit comments