Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b6585d19 authored by Svetoslav Ganov's avatar Svetoslav Ganov Committed by Android (Google) Code Review
Browse files

Merge "Double input focus and focus movement in list not working." into jb-dev

parents 757b3c27 b552d89e
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -765,8 +765,9 @@ public abstract class ViewGroup extends View implements ViewParent, ViewManager
        if (mFocused == null) {
            super.clearFocus();
        } else {
            mFocused.clearFocus();
            View focused = mFocused;
            mFocused = null;
            focused.clearFocus();
        }
    }

+1 −1
Original line number Diff line number Diff line
@@ -1344,8 +1344,8 @@ public abstract class AbsListView extends AdapterView<ListAdapter> implements Te
                    }
                } return;
            }
            super.addFocusables(views, direction, focusableMode);
        }
        super.addFocusables(views, direction, focusableMode);
    }

    @Override