I can't seem to create a modeless popupwindow in Android. I can create a popupwindow just fine, and it will receive events. However, what I need is for it to receive its events, and if the user clicks outside the popup window, the activity receives events as per normal.
I don't really want to use a dialog, and I'm looking for a look where a control pops up, and the user can choose to click on that or choose to click on something else in the activity.
I've been reading about FLAG_NOT_TOUCH_MODAL, but I can't seem to get this wot work with a popupwindow.
Any ideas?