Neilz wrote: > Is there a way, to have View elements (TextView, Button, whatever) > that are not run on the main UI thread?
No. > What about if I set up a game thread, with its own View (like in the > LunarLander sample, for instance) and then create View elements on the > fly and attach them to the main View? Are these still going to be run > in the main UI thread, or in the game thread? Neither. Your application will crash. You cannot modify the widget-based UI from a background thread. Now, I cannot speak for 2D (Canvas) or 3D (OpenGL) apps and what their limitations are vis a vis threads. I am only talking about using Views. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://twitter.com/commonsguy _Android Programming Tutorials_ Version 2.0 Available! -- 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 To unsubscribe from this group, send email to android-developers+unsubscribegooglegroups.com or reply to this email with the words "REMOVE ME" as the subject.

