23.12.2010 19:08, CasaDelGato пишет:
I must be doing something wrong with the animation, but I haven't been able to figure out what.
You are calling an Android UI framework method from a background thread, and that's not allowed.
The UI portion of the framework is not thread-safe, and the consequences are undefined.
This link has a pretty clear description of the issue, as well as proper Android code patterns for this:
http://developer.android.com/resources/articles/painless-threading.html -- Kostya -- Kostya Vasilyev -- WiFi Manager + pretty widget -- http://kmansoft.wordpress.com -- 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

