Hi all!
I have a problem - my Java program doesn't do what I want to. He doesn't display "downloading effect" - he waits 5 seconds and then sets text: 100% downloaded. Please help!
for(int i=0;i<101;i++)
{
t1.setText(i + "% downloaded...");
try {Thread.currentThread().sleep(50);}
catch (InterruptedException a) {
a.printStackTrace();
}}

