[android-developers] Custom AlertDialog

2010-02-05 Thread Sasikumar.S
Hi, How to create a custom dialog box in android? Any example program?.. -- Thanks Regards Sasikumar.S -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To

Re: [android-developers] Custom AlertDialog

2010-02-05 Thread TreKing
On Fri, Feb 5, 2010 at 5:01 AM, Sasikumar.S sasikumar.it1...@gmail.comwrote: How to create a custom dialog box in android? Create your custom layout, inflate it, and set it as the view for the dialog in question.

Re: [android-developers] Custom AlertDialog

2010-02-05 Thread Christoph Renner
Hi Sasikumar You can create an instance of the class Dialog or if its more complex create a new class which extends Dialog. On that instance call setContentView() Here is a simple example: http://developer.android.com/guide/topics/ui/dialogs.html#CustomDialog You can find more examples using