android PopupWindow的使用
1. 设置popupWindow的背景为60%透明
Window window = activity.getWindow();
WindowManager.LayoutParams lp = window.getAttributes();
lp.alpha = 0.6f;
window.setAttributes(lp);
记得隐藏popupwindow的时候,需要恢复
WindowManager.LayoutParams lp = window.getAttributes();
lp.alpha = 1f;
window.setAttributes(lp);
2.定位的问题
2.1 获取自定义view的宽高 ***
view.measure(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
int viewWidth = view.getMeasuredWidth();
int viewHeight = view.getMeasuredHeight();
2.2 根据加载的view的宽高可以计算popupwindow相对guideView的位置了
popWindow.showAsDropDown(guideView, location[0], location[1]);
或者相对于整个屏幕的位置:
popWindow.showAtLocation(parent, Gravity.CENTER, 0, 0);
3.不加popWindow.setBackgroundDrawable(new BitmapDrawable()); popWondow不响应返回键事件 和 点击区域外事件。
4. PopupWindow出现之后,默认的是所有的操作都无效的,除了HOME键。而且是可以操作后面的
界面的。想要锁定后面的界面,很简单,只需要让PopupWindow是focusable的。
popupWindow.setFocusable(true);
5.获取点击区域外的事件
popWindow.setFocusable(true);
popWindow.setTouchable(true);
popWindow.setTouchInterceptor(new OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {
if (popWindow.isShow()) {
// 显示popWindow
return true;
}
return false;
}
});
本文出自 “羊仔” 博客,请务必保留此出处http://5934497.blog.51cto.com/5924497/1617937
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。