PopupWindow 设置布局以外的背景遮罩 弹窗弹出的时候遮罩 弹窗消失的时候遮罩消失 不影响activity布局其他控件点击事件
时间: 2024-04-12 16:34:29 浏览: 167
要实现在弹出PopupWindow时添加一个背景遮罩,并在弹窗消失时移除背景遮罩,而不影响活动布局中其他控件的点击事件,你可以使用以下代码:
首先,在你的布局文件中添加一个FrameLayout作为根布局,并设置一个透明的背景遮罩视图:
```xml
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/main_layout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<!-- Your activity layout content here -->
<View
android:id="@+id/background_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/transparent"
android:clickable="true"
android:focusable="true"
android:visibility="gone" />
</FrameLayout>
```
然后,在你的Activity或Fragment中的代码中,添加以下方法来显示和隐藏PopupWindow,并控制背景遮罩视图的显示和隐藏:
```java
public class MainActivity extends AppCompatActivity {
private PopupWindow popupWindow;
private View backgroundView;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
backgroundView = findViewById(R.id.background_view);
// 设置背景遮罩点击事件
backgroundView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
dismissPopupWindow();
}
});
// 显示PopupWindow
showPopupWindow();
}
private void showPopupWindow() {
// 创建PopupWindow视图
LayoutInflater inflater = (LayoutInflater) getSystemService(LAYOUT_INFLATER_SERVICE);
View popupView = inflater.inflate(R.layout.popup_window, null);
// 设置PopupWindow的属性
popupWindow = new PopupWindow(popupView, ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT);
popupWindow.setFocusable(true);
popupWindow.setOutsideTouchable(true);
popupWindow.setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));
// 显示PopupWindow
popupWindow.showAtLocation(findViewById(R.id.main_layout), Gravity.CENTER, 0, 0);
// 显示背景遮罩
backgroundView.setVisibility(View.VISIBLE);
}
private void dismissPopupWindow() {
// 隐藏PopupWindow
if (popupWindow != null && popupWindow.isShowing()) {
popupWindow.dismiss();
}
// 隐藏背景遮罩
backgroundView.setVisibility(View.GONE);
}
}
```
这样,当你的Activity或Fragment启动时,PopupWindow将显示在屏幕中央,并添加一个背景遮罩。当点击背景遮罩时,PopupWindow将被隐藏,并且背景遮罩也会消失。其他活动布局中的控件的点击事件不会受到影响。请根据你的需要修改布局和样式。
阅读全文