SubmitButton
SubmitButton copied to clipboard
Can you add the button to reset after the animation is done?
is this bug is fixed or not??
I need this feature too.
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);