I just tried to implement a progressdialog and I have some issues to change the text during my long and complex calculations.

for (String aString:myStringArray){
    Log.v(TAG, aString);
    mProgressDialog.incrementProgressBy(1);
    mProgressDialog.setMessage(aString);
}

I can clearly see the incrementProgressBy working and my dialog updating, but the message does not change.

Any idea on how to make that work?

Thank a lot.

link|improve this question

feedback

2 Answers

up vote 6 down vote accepted

Just found the answer, that's working fine:

runOnUiThread(changeMessage);

with that code:

private Runnable changeMessage = new Runnable() {
    @Override
    public void run() {
        //Log.v(TAG, strCharacters);
        m_ProgressDialog.setMessage(strCharacters);
    }
};
link|improve this answer
feedback
private Runnable changeMessage = new Runnable() {
@Override
public void run() {
    //Log.v(TAG, strCharacters);
    m_ProgressDialog.setMessage(strCharacters);
}
};

Tried this and found I don't need '@Override'. Works a treat though!

link|improve this answer
what is the meaning of just copying above answer.And if you do not need @override then why you mention.Be clear – Sameer Dec 26 '11 at 10:49
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.