We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 88a4292 + e5c46fa commit 9951b7cCopy full SHA for 9951b7c
core/java/com/android/internal/view/menu/ActionMenuView.java
@@ -531,6 +531,9 @@ public void initialize(MenuBuilder menu) {
531
532
@Override
533
protected boolean hasDividerBeforeChildAt(int childIndex) {
534
+ if (childIndex == 0) {
535
+ return false;
536
+ }
537
final View childBefore = getChildAt(childIndex - 1);
538
final View child = getChildAt(childIndex);
539
boolean result = false;
0 commit comments