2011년 1월 3일 월요일

Make the screen blur

Set Window flags as blur.

WindowManager.LayoutParams lp = getWindow().getAttributes();
lp.flags = WindowManager.LayoutParams.FLAG_BLUR_BEHIND;
getWindow().setAttributes(lp);

For the Dialog, you can get a Window for Dialog. Dialog.getWindow().

댓글 없음:

댓글 쓰기