SubmitButton icon indicating copy to clipboard operation
SubmitButton copied to clipboard

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

Open usagitoneko97 opened this issue 7 years ago • 4 comments

usagitoneko97 avatar Mar 05 '17 03:03 usagitoneko97

is this bug is fixed or not??

nicks258 avatar Jun 09 '17 13:06 nicks258

I need this feature too.

adultcode avatar Oct 21 '17 20:10 adultcode

cannot reset ?

hejie avatar Apr 25 '18 04:04 hejie

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);

Priya-1023 avatar Jun 11 '20 05:06 Priya-1023