Android アクティビティが背景を半透明に設定すると、前のアクティビティのコンテンツが表示されます。

ポップアップPopupWindow時に現在のアクティビティを半透明に設定します。

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

おすすめ

転載: blog.csdn.net/chunqiuwei/article/details/131943070