Try doing this after setContentView() -- it is the first call to
setContentView() where the window theme is applied.

On Tue, Sep 1, 2009 at 3:48 AM, Matthias <m.kaepp...@googlemail.com> wrote:

>
> In one of my activities, I use the Theme.Dialog style, and I can't get
> the window to launch at full size.
>
> What I do is this:
>
>    protected void onCreate(Bundle savedInstanceState) {
>        super.onCreate(savedInstanceState);
>
>        WindowManager.LayoutParams lp = new WindowManager.LayoutParams
> ();
>        lp.width = WindowManager.LayoutParams.FILL_PARENT;
>        lp.height = WindowManager.LayoutParams.FILL_PARENT;
>        getWindow().setAttributes(lp);
>
>        ...
>    }
>
> why does that not work? I also tried setting the size in pixels, but
> that has no effect whatsoever.
>
> >
>


-- 
Dianne Hackborn
Android framework engineer
hack...@android.com

Note: please don't send private questions to me, as I don't have time to
provide private support, and so won't reply to such e-mails.  All such
questions should be posted on public forums, where I and others can see and
answer them.

--~--~---------~--~----~------------~-------~--~----~
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 unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to