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

Commit 4e267f4c authored by Adam Cohen's avatar Adam Cohen Committed by Android (Google) Code Review
Browse files

Merge "Adding abstract methods for new RecyclerView lib." into ub-launcher3-burnaby

parents 067e5e01 0a71b9d8
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -187,6 +187,10 @@ public class AppsContainerRecyclerView extends RecyclerView
        handleTouchEvent(ev);
    }

    public void onRequestDisallowInterceptTouchEvent(boolean disallowIntercept) {
        // DO NOT REMOVE, NEEDED IMPLEMENTATION FOR M BUILDS
    }

    /**
     * Handles the touch event and determines whether to show the fast scroller (or updates it if
     * it is already showing).
+4 −0
Original line number Diff line number Diff line
@@ -87,4 +87,8 @@ public class WidgetsContainerRecyclerView extends RecyclerView
    public void onTouchEvent(RecyclerView rv, MotionEvent ev) {
        // Do nothing.
    }

    public void onRequestDisallowInterceptTouchEvent(boolean disallowIntercept) {
        // DO NOT REMOVE, NEEDED IMPLEMENTATION FOR M BUILDS
    }
}
 No newline at end of file