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

Commit 71d62119 authored by Yabin Huang's avatar Yabin Huang Committed by Android (Google) Code Review
Browse files

Merge "Don't use View ID to search next focus backward View"

parents 8468378f ef8a8ac9
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -12602,11 +12602,10 @@ public class View implements Drawable.Callback, KeyEvent.Callback,
                return findViewInsideOutShouldExist(root, mNextFocusForwardId);
            case FOCUS_BACKWARD: {
                if (mID == View.NO_ID) return null;
                final int id = mID;
                return root.findViewByPredicateInsideOut(this, new Predicate<View>() {
                    @Override
                    public boolean test(View t) {
                        return t.mNextFocusForwardId == id;
                        return t.findViewById(t.mNextFocusForwardId) == View.this;
                    }
                });
            }