How to fire an event when user touches to screen an another(this i开发者_运维问答s the part i stuck) when releases?
Use a Touch listener, the MotionEvent will have an Action type of "ACTION_DOWN" when the user presses, "ACTION_UP" when he releases. See the motion event documentation.
精彩评论