Rodney
> --
> You received this message because you are subscribed to the Google Groups "android-ndk" group.
> To post to this group, send email to andro...@googlegroups.com.
> To unsubscribe from this group, send email to android-ndk...@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/android-ndk?hl=en.
>
>
The visible lifetime of an activity happens between a call to
onStart() until a corresponding call to onStop(). During this time the
user can see the activity on-screen, though it may not be in the
foreground and interacting with the user. Between these two methods
you can maintain resources that are needed to show the activity to the
user. For example, you can register a BroadcastReceiver in onStart()
to monitor for changes that impact your UI, and unregister it in
onStop() when the user an no longer see what you are displaying. The
onStart() and onStop() methods can be called multiple times, as the
activity becomes visible and hidden to the user.
taken from:
http://developer.android.com/reference/android/app/Activity.html
So it looks like you don't have a window until onStart is called.
Rodney