Hi In Android is it possible to switch focus back and forth between an open dialog box and the main view without closing the dialog box. The preferred method of switching would be to click on the unfocused view so that it obtains focus.
A:
Why not let the user close the dialog box, and when the user reopens the dialog box, reinitialize the dialog box with the previous value? I think that would be simpler and more intuitive.
Lie Ryan
2010-10-17 00:06:47
Thanks for the reply! Basically I have a text and in the dialog box I have a question about the text I want the user to be able to scroll through the text in order to answer the question about the text. So I'd prefer the dialog box to remain visible throughout. I guess using a dialog box is not the way to do it.
Engmex
2010-10-17 12:43:13
@Engmex: How about a dialog box with a scrollable TextView?
Lie Ryan
2010-10-17 13:36:25