I have an activity ( let's say First Activity ) and from this, I start new Activity call Second Activity.
The second activity has been set to used Theme Dialog. I don't want use the default reaction that is to dismiss dialog when user presses outside of Second activity ( I have Cancel button to deal with that).
But in fact, when I press outside ( touch outside), if I touch a position that has a control in the First activity , then this control receives my touch event ( also dismiss the Second Activity Dialog).
How can I prevent First activity from receiving touch event on Second Dialog activity ?
Any suggest really helps me a lot , thanks !