I've add a View, by using WindowManager.
It shows properly what I wanted to do,
but I have a problem. this is the problem.
- back key press doesn't affect under android component(like activity)
what I want is my added view can focusable, ( can click the view's inner button ) only when click the view, and outside of the view can process their work. ( for example, if there is a button, can be clicked, and when back key press, top activity was gone )
but if I add a flag - WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE, then I can't receive onClick method on my added view's button. but back button work correctly.
otherwise, if i remove the flag -I can receive onClick callback, but now back button doesn't work.
I have a dilema. :(
Thank you.