I am trying to add some visual indication, that there are no more pages in the desired fling direction in the ViewPager. However I am struggling to find a place, where to put relevant code.
I have tried extending ViewPager class with following code, but the Toast is not displaying (ev.getOrientation()
returns always 0). I have also tried the same with history points, but ev.getHistorySize()
returns also 0.
What am I missing?
Class example:
public class CustomViewPager extends ViewPager {
public CustomViewPager(Context context) {
super(context);
}
public CustomViewPager(Context context, AttributeSet attrs) {
super(context, attrs);
}
/**
* @see android.support.v4.view.ViewPager#onTouchEvent(android.view.MotionEvent)
*/
@Override
public boolean onTouchEvent(MotionEvent ev) {
boolean result = super.onTouchEvent(ev);
switch (ev.getAction() & MotionEventCompat.ACTION_MASK) {
case MotionEvent.ACTION_MOVE:
if (ev.getOrientation() > 0) {
Toast.makeText(getContext(), "left", 0).show();
}
}
return result;
}
}
I was trying to get the exact same effect that was asked in this question. I struggle with it and then I read @wnafee answer (I couldn't do it with out it).
But then I struggle to implement what was sound pretty simple from the answer. I had so much trouble with implementing it, that I might didn't understand the answer correctly, but there were too many issues of inaccessible APIs since I wasn't working in the same package of the Compatibility library.
After I tried some approaches (none of them succeeded, and they were pretty complicated) I went to a slightly different direction, and now it works like a charm. I used some reflection, for the ones who never used it, don't worry it is really the basic of reflection.
I'm not sure if it's the best solution out there, but it worked for me, so if you would like to use it you are welcome. Please read Wnafee example since it explains some of the stuff that I did.
In order to accomplish this task you should just follow my three parts solution. (Will take you between 3-10 minutes)
Part I:
As Wnafee said I just made my own EdgeEffect class by copy paste the source code from here,
I only did 2 really small changes:
EdgeEffectForEarlyVersions
).public class EdgeEffectForEarlyVersions extends EdgeEffectCompat
. The reason for doing this change is that themLeftEdge
andmRightEdge
are of the typeEdgeEffectCompat
.super(context);
. Since there is no default constructor toEdgeEffectCompat
you have to Explicitly call the constructor.Part II
Besides that I wrote the another function. The purpose of the function is that in case of an early version (before ICS) we would like to use the
EdgeEffectForEarlyVersions
that we just copied. In order to get that purpose I used reflection.This is the function:
Part III
Now all there is left to do, is to call that function after you have the ViewPager Instance and nothing more.
I Hope it will help someone.