> I do a setContentView(R.layout.main); in my onCreate, but have a ton > of other things to do before the onCreate > finishes...and it take a lot of time for anything to show up on the > display. > Is there an easy way just to have the layout at least pop up then get > filled so I don't have the delay?
Delay the extra work you have in onCreate() to a later point. For example, use Handler#postDelayed() to have that work be done after 200ms, to allow Android to draw your layout. -- Mark Murphy (a Commons Guy) http://commonsware.com Android App Developer Books: http://commonsware.com/books.html
-- You received this message because you are subscribed to the Google Groups "Android Beginners" group. NEW! Try asking and tagging your question on Stack Overflow at http://stackoverflow.com/questions/tagged/android To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-beginners?hl=en

