Git Product home page Git Product logo

Comments (6)

drozdzynski avatar drozdzynski commented on August 24, 2024

If you want that functionality I must code it πŸ˜„ and add next button into layout

from steppers.

ArunPandiyan avatar ArunPandiyan commented on August 24, 2024

But that Previous button completes the idea of this library. It would be great if you do that. Thanks!

from steppers.

Sehalsein avatar Sehalsein commented on August 24, 2024

Hi, In the SteppersAdapter.java file add the below code

    private void previousStep() {
        if(this.currentStep > 0){
            this.removeStep = currentStep;
            this.beforeStep = currentStep;
            this.currentStep = this.currentStep - 1;
            Log.e("Library", "remove : "+removeStep+" before : "+beforeStep + "cureent  : "+ currentStep);
            notifyItemRangeChanged(removeStep, currentStep);
            notifyItemChanged(currentStep);
        } else Toast.makeText(context,"Cant go back on this one", Toast.LENGTH_SHORT).show();
   }

And change this method

if(config.getOnCancelAction() != null)
            holder.buttonCancel.setOnClickListener(new View.OnClickListener() {
                @Override
                public void onClick(View v) {

                    config.getOnCancelAction().onCancel();
                    previousStep();

                }
            });

from steppers.

ArunPandiyan avatar ArunPandiyan commented on August 24, 2024

I'll put that code in my project. Anyway thanks man!

from steppers.

drozdzynski avatar drozdzynski commented on August 24, 2024

@Sehalsein can you make Pull Request?

from steppers.

JulienRaad avatar JulienRaad commented on August 24, 2024

Hello guys,

There is no need to check if current position > 0, However you should add in the the bindViewHolder method another condition because there is no need to show the previous button if we are in the first step

if (position == 0) holder.buttonCancel.setVisibility(View.GONE);

The previousStep() method should now then be like this: (Note that the method notifyItemRangeChanged(removeStep, 1) is the right one AND NOT notifyItemRangeChanged(removeStep, currentStep) )

` private void previousStep() {

    this.removeStep = currentStep;
    this.beforeStep = currentStep;
    this.currentStep = this.currentStep - 1;
    Log.e("Library", "remove : "+removeStep+" before : "+beforeStep + "current  : "+ currentStep);
    notifyItemRangeChanged(removeStep, 1);
    notifyItemChanged(currentStep);

}`
Finally, we might also change the text of the cancel button to "Previous" instead of "Cancel".

from steppers.

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.