SparkYuan / SubmitButton

A cool and elegant Submit Button

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Can you add the button to reset after the animation is done?

usagitoneko97 opened this issue · comments

is this bug is fixed or not??

commented

I need this feature too.

commented

cannot reset ?

submitButton.setOnClickListener(new View.OnClickListener() {
@OverRide
public void onClick(View v) {

            new Handler().postDelayed(new Runnable() {
                @Override
                public void run() {
                    Intent intent=new Intent(MainActivity.this,NextActivity.class);
                    startActivity(intent);
                    finish();

                }
            },1000);