Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
question regarding dialog dismiss/cancel handling
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  10 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Jason Proctor  
View profile  
 More options Nov 19 2009, 9:00 pm
From: Jason Proctor <jason.android.li...@gmail.com>
Date: Thu, 19 Nov 2009 18:00:15 -0800
Local: Thurs, Nov 19 2009 9:00 pm
Subject: question regarding dialog dismiss/cancel handling
i never look forward to handling Android dialogs, maybe someone can
point me to a better way of doing it than i'm doing right now.

say i have a dialog which has one text field in it, and OK and Cancel
buttons. i make the dialog with AlertDialog.Builder, and set click
listeners on the buttons and dismiss listener on the dialog.

when the dismiss listener fires, can i tell which button caused the
dismiss? i don't see how, so in the click listener, i set a member
flag according to which button was clicked. then in the dismiss
listener, i then check the flag to see whether to proceed or not. a
rather backward process. am i missing something?

the other issue i have with Android's dialogs is that if the contents
fail validation and the dialog needs to be re-presented, i have to
re-show it in the dismiss listener. in every other environment known
to man, dialogs are (somewhat) modal, so the dialog stays up unless
expressly dismissed by code. IMHO, the latter makes more sense.

thanks for any help with this stuff,
--
jason.vp.engineering.particle


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
TreKing  
View profile  
 More options Nov 19 2009, 10:50 pm
From: TreKing <treking...@gmail.com>
Date: Thu, 19 Nov 2009 21:50:26 -0600
Local: Thurs, Nov 19 2009 10:50 pm
Subject: Re: [android-developers] question regarding dialog dismiss/cancel handling

"when the dismiss listener fires, can i tell which button caused
the dismiss?"

No - I don't think any of the buttons by default cause the dialog to be
dismissed. This happens when you call dismiss() or cancel() on the dialog or
the user presses the back button.

"so in the click listener, i set a member flag according to which button was
clicked. then in the dismiss listener, i then check the flag to see whether
to proceed or not"

But you have set on click listeners for each of the two buttons you have,
no? So why not handle their actions in their respective click listeners?
What are you doing in each of those listeners (I'm going to bet you're
dismissing the dialog after storing the flag...)?

"the other issue i have with Android's dialogs is that if the contents fail
validation and the dialog needs to be re-presented, i have to re-show it in
the dismiss listener"

No, you don't have to do this. In your listener for the OK button you can
get the text field, validate it, and if it fails show a toast message, and
don't dismiss the dialog. If it succeeds, do what you need to with the
entered data and THEN call dismiss() on the dialog.

If you want to get fancy you can also validate the user data as they type
and disable and enable the OK button in response so they can only hit OK
when they've entered valid data.

Also, I highly doubt you need the dismiss listener in your case. Hope that
helps.

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

On Thu, Nov 19, 2009 at 8:00 PM, Jason Proctor <


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Jason Proctor  
View profile  
 More options Nov 20 2009, 2:20 pm
From: Jason Proctor <jason.android.li...@gmail.com>
Date: Fri, 20 Nov 2009 11:20:19 -0800
Local: Fri, Nov 20 2009 2:20 pm
Subject: Re: [android-developers] question regarding dialog dismiss/cancel handling
thanks for the response, most helpful.

i don't actively dismiss the dialog at any point, therefore something
behind the button click must be doing it. i took a look in
android.internal.app.AlertController.java, and found that its click
listener calls the appropriate button handler, then sends a dismiss
message to the dialog. unless i'm missing something big, seems fairly
conclusive.

so the reasons why i do it this convoluted way are coming back to me.
due to the auto-dismiss, i have to validate in the dismiss handler,
as i can't schedule a reappearance of the dialog in the onClick().

i suppose i'll have to get all fancy and do the validation key by key, then.

(the point remains that Android has the weirdest modal dialog
handling of any environment i've encountered!)

thanks,
J

--
jason.vp.engineering.particle

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
TreKing  
View profile  
 More options Nov 20 2009, 2:45 pm
From: TreKing <treking...@gmail.com>
Date: Fri, 20 Nov 2009 13:45:17 -0600
Local: Fri, Nov 20 2009 2:45 pm
Subject: Re: [android-developers] question regarding dialog dismiss/cancel handling

Just ran a quick test on my code and you're right! Sorry for the wrong info.
I've been manually calling dismiss() and cancel() on the dialogs I use. It's
been a while since I looked at that code and figured I was doing that
because I had to ... now this makes me wonder why I did it that way to begin
with =P.

But you should still be able to do validation on the OK button being
clicked, and if that fails, just re-show the dialog.

"as i can't schedule a reappearance of the dialog in the onClick()"

Why not? If you define your click handler inline within the activity that's
using it, you can just call showDialog(ID) in onClick(), no?
Or does that not work?

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

On Fri, Nov 20, 2009 at 1:20 PM, Jason Proctor <


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Jason Proctor  
View profile  
 More options Nov 20 2009, 2:49 pm
From: Jason Proctor <jason.android.li...@gmail.com>
Date: Fri, 20 Nov 2009 11:49:36 -0800
Local: Fri, Nov 20 2009 2:49 pm
Subject: Re: [android-developers] question regarding dialog dismiss/cancel handling
can't re-show the dialog in onClick(), because it's already shown. at
least that was true with 1.1, i should check it with a later SDK.

so either i do my validation in onDismiss(), or i get all fancy.

--
jason.vp.engineering.particle

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
TreKing  
View profile  
 More options Nov 20 2009, 3:11 pm
From: TreKing <treking...@gmail.com>
Date: Fri, 20 Nov 2009 14:11:09 -0600
Local: Fri, Nov 20 2009 3:11 pm
Subject: Re: [android-developers] question regarding dialog dismiss/cancel handling

What if you call setCancelable(false) on the dialog? Will it still
auto-dismiss?

I would assume not and then you could do what you're trying to do and call
cancel() manually when you're done validating.

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

On Fri, Nov 20, 2009 at 1:49 PM, Jason Proctor <


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Brad Gies  
View profile  
 More options Nov 20 2009, 3:11 pm
From: Brad Gies <rbg...@gmail.com>
Date: Fri, 20 Nov 2009 12:11:28 -0800
Local: Fri, Nov 20 2009 3:11 pm
Subject: Re: [android-developers] question regarding dialog dismiss/cancel handling

You can definitely post a message to a handler in the OnClick and then
show the dialog again when your Handler gets the message...


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Jason Proctor  
View profile  
 More options Nov 20 2009, 3:24 pm
From: Jason Proctor <jason.android.li...@gmail.com>
Date: Fri, 20 Nov 2009 12:24:30 -0800
Local: Fri, Nov 20 2009 3:24 pm
Subject: Re: [android-developers] question regarding dialog dismiss/cancel handling
according to the docs, setCancelable() determines whether the "back"
key cancels the dialog.

it's not so much the cancel behaviour as the ok behaviour. if the
dialog didn't auto-dismiss on an OK click, then things would work a
lot easier.

well, i'm just going to write a wrapper class that does all this dumb
stuff and calls out to custom validator and acceptor listeners to do
the necessary. it's a bit odd that Android has listeners up the wazoo
but Dialog doesn't quite fit in.

...

read more »


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
TreKing  
View profile  
 More options Nov 20 2009, 3:43 pm
From: TreKing <treking...@gmail.com>
Date: Fri, 20 Nov 2009 14:43:08 -0600
Local: Fri, Nov 20 2009 3:43 pm
Subject: Re: [android-developers] question regarding dialog dismiss/cancel handling

Yeah, just ran a quick test and setting cancelable to false stills lets the
dialog be dismissed by a button press. Weird. This definitely feels
ass-backwards.

Well, the last thing I can think of is adding your own layout with an OK and
cancel button with Dialog.setView() and handle the clicking on THOSE the way
you wanted to. That should definitely work. And it might be less work than a
full-blown wrapper.

Good luck!

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

On Fri, Nov 20, 2009 at 2:24 PM, Jason Proctor <

...

read more »


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Jason Proctor  
View profile  
 More options Nov 20 2009, 3:54 pm
From: Jason Proctor <jason.android.li...@gmail.com>
Date: Fri, 20 Nov 2009 12:54:37 -0800
Local: Fri, Nov 20 2009 3:54 pm
Subject: Re: [android-developers] question regarding dialog dismiss/cancel handling
well i already did the wrapper so :-)

thanks for your help on this one...

...

read more »


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »