1. 程式人生 > >android實現點選螢幕其他地方popupwindow消失

android實現點選螢幕其他地方popupwindow消失

// 解決popupWindow顯示後不消失問題
menuPopupWindow.setBackgroundDrawable(new BitmapDrawable());
menuPopupWindow.setOutsideTouchable(true);

//必須執行完上面2個函式後再顯示popupwindow,否則無效
menuPopupWindow.showAsDropDown(mIbMenu);