I want to cause my program to pause for a certain number of milliseconds, how exactly would I do this?
I have found different ways such as Thread.sleep( time )
Thread.sleep( time )
Do something like the following. Here is a link to the reference, this might be helpful.
final MyActivity myActivity = this; thread= new Thread(){ @Override public void run(){ try { synchronized(this){ wait(3000); } } catch(InterruptedException ex){ } // TODO } }; thread.start();