am 4e267f4c: Merge "Adding abstract methods for new RecyclerView lib." into ub-launcher3-burnaby

* commit '4e267f4cdca3ec52aa55982560551ea766adf9be':
  Adding abstract methods for new RecyclerView lib.
This commit is contained in:
Adam Cohen
2015-05-07 18:30:42 +00:00
committed by Android Git Automerger
2 changed files with 8 additions and 0 deletions
@@ -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).
@@ -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
}
}