In my app I create a window that I display depending on context.

This window gets displayed above the system menu z-level layer -

i.e. the window hides a portion of the menu.

I would like this window to be displayed behind the menu.

                WindowManager.LayoutParams lp = new
WindowManager.LayoutParams(
                        LayoutParams.WRAP_CONTENT,
LayoutParams.WRAP_CONTENT,
                        WindowManager.LayoutParams.TYPE_APPLICATION,
                        WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE
                                |
WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE,
                        PixelFormat.TRANSLUCENT);

Any help?

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to