Dim or Blur background in activity

android

Solution

I solved this problem by setting the background to the layout of the pop-up window with the following.

android:background="#80FFFFFF"

Thnaks..And it works as expected.

Problem

In one of my project I used `PopupWindow`. My problem is while viewing popupwindow the design seems to be uncomfortable to work. So I want to dim or blur my activity background. I searched a lot, but most of the answers seems only for `Dialog` not for `PopupWindow`. Is it possible in android to dim our activity background while viewing `PopupWindaow`.

Original source

Related problems