SwipeStack icon indicating copy to clipboard operation
SwipeStack copied to clipboard

A simple, customizable and easy to use swipeable view stack for Android.

Results 57 SwipeStack issues
Sort by recently updated
recently updated
newest added

Hi, sometimes when randomly swiping I get this ``` java.lang.IllegalArgumentException: pointerIndex out of range at android.view.MotionEvent.nativeGetAxisValue(Native Method) at android.view.MotionEvent.getX(MotionEvent.java:2072) at link.fls.swipestack.SwipeHelper.onTouch(SwipeHelper.java:58) at android.view.View.dispatchTouchEvent(View.java:9335) at android.view.ViewGroup.dispatchTransformedTouchEvent(ViewGroup.java:2553) at android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:2240) at android.view.ViewGroup.dispatchTransformedTouchEvent(ViewGroup.java:2581) at...

Add a method called when a view has been clicked,in the interface SwipeStackListener.

Hi, thanks for the awesome lib. I've tried to reproduce your code, and just noticed that `getLayoutInflater()` is not a method from `BaseAdapter` nor `CardStackAdapter`. Instead, I had to obtain...

![device-2017-10-11-160701](https://user-images.githubusercontent.com/32704003/31435756-56fc1b10-ae9e-11e7-888a-f4b917a33937.png)

Hi, We have a use case where when we swipe left, we need to show the previous card. Is there a way to do this in the library. Can you...

How can I dynamically add mapview/supportedmapfragment to the CardView under getView in the Adapter? I attempted to add the following code: @Override public View getView(final int position, View convertView, ViewGroup...

If i set onClickListener to the swipeStack then i cannot be able to swipe left or right?

``` holder.op1 = (Button) convertView.findViewById(R.id.option1_card); holder.op2 = (Button) convertView.findViewById(R.id.option2_card); holder.op3 = (Button) convertView.findViewById(R.id.option3_card); holder.op4 = (Button) convertView.findViewById(R.id.option4_card); holder.op1.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { Log.e("op1","clicked"); holder.op1.setBackgroundColor(Color.WHITE); holder.op1.setTextColor(Color.BLACK); }...

I want the list of items to be changed dynamically. So when the list of items are changed, the swipe stack doesn't take effect instantly. When the number of items...

bug