Is a DialogBox considered a View in Android? I want to add one to a FrameLayout, but I'm not sure if I can? Is it possible?

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

Unless there's something I'm missing, no, Dialog inherits directly from Object, and does not apply as a View. But I have to ask, why do you want to add Dialog into a FrameLayout in the first place?

link|improve this answer
I have a game that runs in a SurfaceView. When the game ends, I want to display something so that the user can type in their name (for high scores). Any suggestions? – OhMisterRabbit May 7 '11 at 21:11
Dialog is one way for sure. But AFAIK this is something you should do in your Activity instead, mostly for handling screen orientation changes. And there is a mechanism in Activity for these situations in which your Activity is re-created ensuring your dialog is shown after wards. But thinking that you have a FrameLayout in your hands, it would be much easier to have an embedded layout you show as a 'dialog' when needed on top of your SurfaceView, or is there something I'm missing which makes Dialog only option? – harism May 7 '11 at 21:23
I've only just implemented the FrameLayout. I'm just struggling to find a way to do this from my position. I don't think it is the only way, but from here I don't know what else I could do. Is there another View I could use that lets you draw views on top of it? Is there just a plain View that I could use that would let me, for example, draw an edit text on it and then display highscores as well? – OhMisterRabbit May 7 '11 at 21:33
If you're new to Android, I would go with LinearLayout which is maybe the easiest one to learn. You ought only to fill it with TextViews (rank + name + score) and a EditText. And this is something you can do using a layout xml. – harism May 7 '11 at 21:42
Okay, I'll give that a shot. Sounds easier than trying to configure a CustomDialog, especially with my timeframe. Thanks! – OhMisterRabbit May 7 '11 at 21:45
show 1 more comment
feedback

You probably need to make a custom dialog for this matter a good help for that is the official android developer website

http://developer.android.com/guide/topics/ui/dialogs.html#CustomDialog

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.