Android how to make a custom PopupWindow uncanceable -


i created class extends popupwindow. there way pretend popup getting canceld / making uncanceable (like dialog)?

try this:

window.settouchable(true);     window.setfocusable(false);  window.setoutsidetouchable(false); 

Comments