When the android Activity sets the background to be translucent, it will display the content of the previous activity

PopupWindowSet the current Activity to be translucent when popping up :

   WindowManager.LayoutParams lp = this.activity.getWindow().getAttributes();
   lp.alpha = 0.5f; //0.0-1.0
   this

Guess you like

Origin blog.csdn.net/chunqiuwei/article/details/131943070