[android-developers] Re: Dialog display at bottom of Screen

2010-04-20 Thread Nithin
I can use android.widget.PopUpWindow class, but it has sharp edges in the corners, I need like in Dialog, rounded edges. Is it possible in PopUpWindow or can we put the dialog to the Bottom. Nithin On Apr 20, 2:14 pm, Nithin nithin.war...@gmail.com wrote: Hi, The dialog(android.app.Dialog)

[android-developers] Re: Dialog display at bottom of Screen

2010-04-20 Thread Pieter
You can do the following in the constructor of a Dialog subclass: getWindow().getAttributes().y = 30; to move the dialog 30 pixels down. This movement is relative though. On Apr 20, 3:55 pm, Nithin nithin.war...@gmail.com wrote: I can use android.widget.PopUpWindow class, but it has sharp

[android-developers] Re: Dialog display at bottom of Screen

2010-04-20 Thread Nithin
Thanks pieter... On Apr 20, 7:19 pm, Pieter pie...@gamesquare.nl wrote: You can do the following in the constructor of a Dialog subclass: getWindow().getAttributes().y = 30; to move the dialog 30 pixels down. This movement is relative though. On Apr 20, 3:55 pm, Nithin