Possible Duplicate:
How to call a method after a delay
When a user clicks a button, I want to doThis(myVar1);. 1 second later I want to doThis(myVar2);. How can I schedule that 2nd call?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Create a handler and do a
postDelayed()on a runnable. Check the documentation for Handler.