Tvd
Tvd

Reputation: 4601

Query regarding AlertDialog - Android

I have to make a dialog with 2 editfields and a process which will be handled in AsyncTask on a button click. I found that I can add editfields in alertdialog and work out. My queries are :

1) In the AsyncTask process, I will also have to show a ProgressDialog. Can I show a ProgressDialog on top of AlertDialog ?

2) To make coding simple and easy, I would prefer if I can extend AlertDialog. Is it possible to extend AlertDialog or should I extend AlertDialog.Builder ? I am confused with this state.

3) In whichever button presses, eventually the dialog will be closed, but need to run AsyncTask on positive button. Is it fine to work like this with an AlertDialog !

4) Will AlertDialog also handle the orientation part on its own like Landscape or portrait as it is supposed to do.

Any help, guidance with this can be helpful.

Upvotes: 0

Views: 505

Answers (1)

Aidanc
Aidanc

Reputation: 7011

1) In the AsyncTask process, I will also have to show a ProgressDialog. Can I show a ProgressDialog on top of AlertDialog ?

No, see: alert dialog not appearing in android I don't get why you would need to? perhaps it's best to rethink what you're trying to achieve. There's always another, better way which will allow you to do everything you want to.

2) To make coding simple and easy, I would prefer if I can extend AlertDialog. Is it possible to extend AlertDialog or should I extend AlertDialog.Builder ? I am confused with this state.

You can create custom alert dialogs. This is what you should do. How to implement a custom AlertDialog View

For information about creating custom dialogs in general check.. http://developer.android.com/guide/topics/ui/dialogs.html#CustomDialog

3) In whichever button presses, eventually the dialog will be closed, but need to run AsyncTask on positive button. Is it fine to work like this with an AlertDialog !

Hm, could you expand on what you mean here?

4) Will AlertDialog also handle the orientation part on its own like Landscape or portrait as it is supposed to do.

Orientation changes will be handled by the dialog itself. No need to worry about that.

Upvotes: 1

Related Questions