popupwindow - how can I make android dialog not swallow touches -


how can make android dialog not swallow touches. , pass touches parent window?

please point me examples if possible.

do know how can dispatch event window? tried make custom dialog , override dispatchtouchevent

@override     public boolean dispatchtouchevent (motionevent ev) {         pglog.log(tag, "dispatchtouchevent %s", super);         return super.dispatchtouchevent(ev);     } 

but didn't work.


Comments

Popular posts from this blog

hibernate - How to load global settings frequently used in application in Java -

python 3.x - Mapping specific letters onto a list of words -

objective c - Ownership modifiers with manual reference counting -