Android PopupWindow

什么是PopupWindow

A popup window that can be used to display an arbitrary view. The popup windows is a floating container that appears on top of the current activity.

  1. 显示
    View contentView = View.inflate(getApplicationContext(),R.layout.popup_appmanger, null); 
    //这里最后一个参数是指定是否能够获取焦点,如果为false那么点击弹出来之后就不消失了,但是设置为true之后点击一个条目它弹出来了,
    再点击别的条目的时候这个popupWindow窗口没有焦点了就自己消失了
    PopupWindow popwindow = new PopupWindow(contentView ,LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT,true);
    popwindow.setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));
    int[] location = new int[2];
    //得到当前组件的位置
    view.getLocationInWindow(location);
    //显示popupWindow
    popwindow.showAtLocation(parent,Gravity.LEFT | Gravity.TOP, DensityUtil.dip2px(getApplicationContext(), location[0] + 70),location[1]);
    
  2. 取消
    if (popwindow != null && popwindow.isShowing()) {
       popwindow.dismiss();
       popwindow = null;
    } 
    
  3. 细节
    PopupWindow是存在到Activity上的,如果PopupWindow在显示的时候按退出键的时候该Activity已经销毁,但是PopupWindow没有销毁,
    所以就报错了(Logcat有报错信息但是程序不会崩溃),所以我们在ActivityonDestroy方法中要判断一下PopupWindow是否在显示,如果在显示就取消显示。
    PopupWindow默认是没有背景的,如果想让它播放动画就没有效果了,因为没有背景就什么也播放不了,所以我们在用这个PopupWindow的时候必须要给它设置一个背景,
    通常可以给它设置为透明色,这样再播放动画就有效果了
    popwindow.setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));

PopupWindow响应Back键后关闭

  • 最简单
    new的时候,使用下面的方法:

    new PopupWindow(view, LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT, true);
    

    当然你也可以手动设置它:

    mPopupWindow.setFocusable(true);
    mPopupWindow.setFocusableInTouchMode(true);  
    

    此时实际上还是不能起作用的,必须加入下面这行作用未知的语句才能发挥作用:

    mPopupWindow.setBackgroundDrawable(new BitmapDrawable());
    

    设置 BackgroundDrawable并不会改变你在配置文件中设置的背景颜色或图像。

  • 最通用
    首先在布局文件(*.xml)中随意选取一个不影响任何操作的View,推荐使用最外层的Layout
    然后设置该LayoutFocusableFocusableInTouchMode都为true
    接着回到代码中对该View重写OnKeyListener()事件了。捕获KEYCODE_BACK给对话框dismiss()

    给出一段示例:

    private PopupWindow mPopupWindow;
    private View view;
    private LinearLayout layMenu;
    
    LayoutInflater inflater = (LayoutInflater) main.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
    view = inflater.inflate(R.layout.popup_main_menu, null, false);
    layMenu = (LinearLayout) view.findViewById(R.id.layMenu);
    mPopupWindow = new PopupWindow(view, LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT, true);
    
    layMenu.setOnKeyListener(new OnKeyListener() {
        public boolean onKey(View v, int keyCode, KeyEvent event) {
            if (event.getAction() == KeyEvent.ACTION_DOWN && keyCode == KeyEvent.KEYCODE_BACK) {
                mPopupWindow.dismiss();
            }
    
            return false;
        }
    });
    

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程