On Sat, Jan 26, 2013 at 4:04 PM, dashman <[email protected]> wrote:

> Is it possible byt the time the AlertDialog finishes that the
> AlertDialog is closed - i.e. ui control no longer valid.
>

I assume you meant "by" and "the AsyncTask finishes" - yes, of course it's
possible. You just have to dismiss the dialog faster than it takes the task
to run.


> Or will the AsyncTask close automatically if the AlertDialog is closed.
>

AsyncTask is not something that "closes". You can *cancel* it, if that's
what you mean. But it doesn't do that automatically either. It does what
you tell it to do. In this case, if your dialog goes away, you need to tell
the task to stop doing what it's doing.

how can i tell if the AlertDialog is shown or no longer active.
>

Look at it's documentation. There are methods for being told when it is
dismissed, canceled, or is currently showing.

-------------------------------------------------------------------------------------------------
TreKing <http://sites.google.com/site/rezmobileapps/treking> - Chicago
transit tracking app for Android-powered devices

-- 
-- 
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


Reply via email to