Hi Dianne,

what I am still wondering about is why I would need a Looper.prepare() to
create a View object when it is not attached to a Window.

Here is the background: I have a "list activity" and a "show detail
activity" and an "app". The user jumps frequently between the list activity
and the show detail activity. In order to speed things up a bit I would like
to cache the inflated GUI in "app" and call setContentView with this cached
view in onCreate of "show detail activity". And to make sure that also the
first call to onCreate on "show detail activity" doesn't have to wait I
would like to inflate it in a separate thread.


On Wed, Apr 8, 2009 at 8:00 PM, Dianne Hackborn <hack...@android.com> wrote:

> Do it on the main thread.
>
> If you want to actually run UI on another thread, read up on Looper and
> Handler, do all the stuff such as calling Looper.prepare() in your thread,
> and then redesign your thread logic to be messages based on not do work more
> than a few seconds and all of the other constraints on a thread that is
> running UI.
>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to