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

Commit 0a71b9d8 authored by Winson Chung's avatar Winson Chung
Browse files

Adding abstract methods for new RecyclerView lib.

Change-Id: I50c3dfaecd79a87340ed4eeaa3195a26311062e0
parent 83f59abc
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