List of usage examples for android.widget PopupWindow setIgnoreCheekPress
public void setIgnoreCheekPress()
From source file:com.roamprocess1.roaming4world.ui.messages.MessageActivity.java
private void commonPopupWindowDisplay(PopupWindow popupWindow, View tabMenu, int x, int y) { popupWindow.setFocusable(true);//from w w w. j a v a2 s .c o m popupWindow.setBackgroundDrawable(new BitmapDrawable()); popupWindow.setIgnoreCheekPress(); popupWindow.setOutsideTouchable(true); popupWindow.showAsDropDown(tabMenu, x, y); }