什么是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.
- 显示
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]);
- 取消
if (popwindow != null && popwindow.isShowing()) { popwindow.dismiss(); popwindow = null; }
- 细节
PopupWindow
是存在到Activity
上的,如果PopupWindow
在显示的时候按退出键的时候该Activity
已经销毁,但是PopupWindow
没有销毁,
所以就报错了(Logcat
有报错信息但是程序不会崩溃),所以我们在Activity
的onDestroy
方法中要判断一下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
。
然后设置该Layout
的Focusable
和FocusableInTouchMode
都为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; } });