I would like to create a dialogue-style form that would fill a large area of ββthe screen (left, right, top, bottom pad 10px).
I defined the "CupCakeDialog" style as follows:
<style name="CupcakeDialog" parent="android:Theme.Dialog"> <item name="android:windowAnimationStyle">@null</item> </style>
and running the action:
getWindow().requestFeature(Window.FEATURE_PROGRESS); getWindow().requestFeature(Window.FEATURE_NO_TITLE); setContentView(R.layout.ad_popup);
The dialog is displayed as follows:
alt text http://img199.imageshack.us/img199/1299/popupstackoverflow.png
Does anyone know how to make the dialogue bigger (increase the height)?
Thank!
android layout dialog
Niko Gamulin Dec 27 '09 at 21:20 2009-12-27 21:20
source share