android popupwindow相关备忘录

来源:互联网 发布:mac ae插件怎么安装 编辑:程序博客网 时间:2024/06/06 08:25

1.让popupWidow在指定控件或位置上方显示:

int[] location = new int[2];view.getLocationOnScreen(mLocation);mPopupWindow.showAtLocation(mGradeView, Gravity.NO_GRAVITY, mLocation[0], mLocation[1]-mPopupWindow.getHeight());

2.点击popupWindow以外的区域,popupWindow消失:

 mPopupWindow.setBackgroundDrawable(new BitmapDrawable()); mPopupWindow.setOutsideTouchable(true);

0 0
原创粉丝点击