GithubHelp home page GithubHelp logo

Load Previous Card about swipestack HOT 3 OPEN

joshvarun avatar joshvarun commented on July 24, 2024
Load Previous Card

from swipestack.

Comments (3)

karan26796 avatar karan26796 commented on July 24, 2024

Ya man, been struggling with the same.
You'd have to add the previous item into the array list again at the top position and then update the adapter.
Haven't found the right logic to do that yet though.

from swipestack.

tundisi avatar tundisi commented on July 24, 2024

Hello @joshvarun @karan26796 in the adapter add an array with the deleted objects and create two methods that are the following:

private List<String> mData;
private List< String> mDataDeleted;

public void next(){
    mDataDeleted.add(mData.get(0));
    mData.remove(0);
}

public void back(){
    mData.add(0,mDataDeleted.get(mDataDeleted.size()-1));
    mDataDeleted.remove(mDataDeleted.size()-1);
} 

I realized that the adapter does not remove the element from the list, so when I swipe the intercept and call the next method that is in the adapter.

swipeStack.setListener(new SwipeStack.SwipeStackListener() {
            @Override
            public void onViewSwipedToLeft(int i) {
                swipeStackAdapter.next();
            }

            @Override
            public void onViewSwipedToRight(int i) {
                swipeStackAdapter.next();
            }

            @Override
            public void onStackEmpty() {
            }
        });

finally when I click on the back button I call the back method of the adapter and update everything with resetStack()

@OnClick(R.id.btnBack)
public void back(){
     swipeStackAdapter.back();
     swipeStack.resetStack();
}

I hope I help you

hug, greetings

from swipestack.

balavishnu avatar balavishnu commented on July 24, 2024

@tundisi Thank you. Your solution worked. Only problem is that the "back" Animation is not smooth, is there any way to make it smooth?

from swipestack.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.