I have a Fragment with the following layout: Layout
I want the RecyclerView that is highlighted to change when onSwipe left/right is called.
Is it easier to have the whole Fragment change? I have tried this method: Android: How to handle right to left swipe gestures with no success, i get the following exception:
java.lang.NullPointerException: Attempt to invoke virtual method 'float android.view.MotionEvent.getX()' on a null object reference at com.apps.myshifts.OnSwipeTouchListener$GestureListener.onFling(OnSwipeTouchListener.java:40)
What is the easiest way to implement this?