I have the following hierarchy: Activity -> PopupWindow -> CustomView
My the PopupWindow itself is a square, but
Try setting these on your PopupWindow instance:
window.setBackgroundDrawable(new BitmapDrawable());
window.setOutsideTouchable(true);
and
window.setTouchable(true);
This is just a suggestion... I haven't tested it. Let me know if it works.
[Note: This is for the onTouch() to get called on touch events..]