I want to show default dialog and want to increase its width to width of display width , how can it be done?
Dialog.show("Message", "this is text", "Ok", null);
I want to show default dialog and want to increase its width to width of display width , how can it be done?
Dialog.show("Message", "this is text", "Ok", null);
You can't do that with the default dialogs. You can construct your own
Dialog
object then use methods such asshowStretched
or evenshow(int,int,int,int)
but that would require adding the dialog body & OK Button yourself. E.g.: