I want my app to not obliterate all other apps on the screen and
perhaps to dim them or blur them while keeping just a small panel open
at the bottom.

I've tried this to no avail...

        setContentView(R.layout.main);

 
getWindow().setType(WindowManager.LayoutParams.TYPE_SYSTEM_ALERT);
        getWindow().addFlags(
                WindowManager.LayoutParams.FLAG_DIM_BEHIND |
WindowManager.LayoutParams.FLAG_FORCE_NOT_FULLSCREEN);

Is there a way to do this?

tone

-- 
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