I filled a LinearLayout with a bunch of TextView's filled with numbers. Then I used a for loop to run over every TextView, get the content with TextView.getText(), increment the value (after casting) and put it back with TextView.setText(). I do this 500000 times. This all works, but I can't see anything but a black screen while the program is running. At the end of the loop I see that all of the TextView's have increased in value by 500000, but I can't see anything until the loop is done.
Is there a way to make the display refresh between each iteration of the loop? Thanks, Tobiah -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

