In my application i have added a frame-by-frame animation to my button’s selector. So, when I press the button the application is started and another activity is launched. The problem is that if I press the button very quickly the application reaches only to the second frame. I would like to launch the next activity after the animation is ended. Is that possible?
In my application i have added a frame-by-frame animation to my button’s selector. So,
Share
The button should launch a new Thread instead new Activity directly, and then this new Thread will launch the activity after a few secconds using "Thread.sleep(xxxx);"