SwipeStack
SwipeStack copied to clipboard
A simple, customizable and easy to use swipeable view stack for Android.
It is not possible to use a ViewPager inside a card due to the swipe gestures. But also the click on a TabLayout item does not change the ViewPager's page....
is it possible to swipe to a specific position? for instance to go back one card
mSwipeStack.setSwipeProgressListener(new SwipeStack.SwipeProgressListener() { @Override public void onSwipeStart(int position) { } @Override public void onSwipeProgress(int position, float progress) { System.out.println("progress...."+progress); View mView = mSwipeStack.getTopView(); if (progress < 0) { mView.setBackgroundColor(getResources().getColor(R.color.continue_button_color)); }...
``` uses-sdk:minSdkVersion 15 cannot be smaller than version 16 declared in library [link.fls:swipestack:0.3.0] E:\kaishuapp_android\kaishustory\app\build\intermediates\exploded-aar\link.fls\swipestack\0.3.0\AndroidManifest.xml ```
Are there any guidelines when using within a viewpager ?
can't swipe when I set onClick listener to a child view in adapter
Hi, thank you for a superb library. I got a crash report today from Android 4.4.2. Fatal Exception: java.lang.IllegalArgumentException: pointerIndex out of range Fatal Exception: java.lang.IllegalArgumentException: pointerIndex out of range...
i want set "SAVE" and "NEXT" field on textview when swipe the cardstack. but text set on 3rd position of cardstack, what is an issue? cardStack.setSwipeProgressListener(new SwipeStack.SwipeProgressListener() { @Override public...
All cards get added to the bottom of the stack, which is great. However, I'd like to add both from the top and the bottom of the stack. Is there...