now I know, there are many of threads with this problem, however I tried them all and it just didn't work. The problem is that my progress bar is not updated. Here is my code:
private class TwoSecondsThread extends Thread {
int progress = 0;
public TwoSecondsThread() {
}
@Override
public void run() {
while(progress != 2000) {
Log.d("TWO SECONDS", "going to sleep for 100ms");
try {
Thread.sleep(100);
} catch (InterruptedException e) {}
progress += 100;
final ProgressBar pg = startTransactionProgressBar;
// Update the progress bar
runOnUiThread(new Runnable() {
@Override
public void run() {
Log.d("TWO SECONDS", "updating progress bar");
pg.setProgress(progress);
}
});
}
}
}
I understood, that there is bug in the adnroid SDK, but I have seen apps having a functional progressBar. So what is the trick to make it work?
Thanks, Filip
startTransactionProgressBar? – Che Jami May 9 '12 at 15:04