vote up 1 vote down star

I'd like to show a Dialog that occupies as much screen space as possible.

So, here's a sample:

AlertDialog dialog = new AlertDialog.Builder(ctx)......create();
Window w = dialog.getWindow();
WindowManager.LayoutParams lp = w.getAttributes();
lp.width = 320;
lp.height = 480;
w.setAttributes(lp);

Problem is, this doesn't change a thing. Why?

TIA.

flag

I’d like to answer “because C# is more cleverer than you and won’t allow it because it’s a stupid thing to do” but I think the explanation is something a lot simpler. :/ – Bombe Aug 25 at 12:00
See that tag that says "Android"? That means Java. Before you go insulting people you should figure out what you're talking about. – MattC Aug 25 at 13:58

1 Answer

vote up 1 vote down

I don't know how to do exactly what you're wanting, but isn't this mostly defeating the purpose of a Dialog? Why not just create a custom Activity and use the Dialog theme if you're just wanting it to look dialog-ey.

link|flag
Because of the overhead and the fact that this dialog is a part of an activity. – gsmd Aug 28 at 16:02

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.