您好,登錄后才能下訂單哦!
1. 設(shè)置popupWindow的背景為60%透明
Window window = activity.getWindow();
WindowManager.LayoutParams lp = window.getAttributes();
lp.alpha = 0.6f;
window.setAttributes(lp);
記得隱藏popupwindow的時候,需要恢復(fù)
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 根據(jù)加載的view的寬高可以計(jì)算popupwindow相對guideView的位置了
popWindow.showAsDropDown(guideView, location[0], location[1]);
或者相對于整個屏幕的位置:
popWindow.showAtLocation(parent, Gravity.CENTER, 0, 0);
3.不加popWindow.setBackgroundDrawable(new BitmapDrawable()); popWondow不響應(yīng)返回鍵事件 和 點(diǎn)擊區(qū)域外事件。
4. PopupWindow出現(xiàn)之后,默認(rèn)的是所有的操作都無效的,除了HOME鍵。而且是可以操作后面的
界面的。想要鎖定后面的界面,很簡單,只需要讓PopupWindow是focusable的。
popupWindow.setFocusable(true);
5.獲取點(diǎn)擊區(qū)域外的事件
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;
}
});
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。