I want to play a media when i touch a circular area, but how can I could determine that my touch position is in the circle?
So far I extend a view and implement the onTouchEvent, and I need the algorithm for deciding if the position is inside or outside the circle.
You should take position of the view with View.getX() and View.getY() to get
xandyof the upper left corner and also assuming You know the radius (or able to obtain width/height of the view to determine radius). After that, obtainxTouchandyTouchusing MotionEvent.getX() and MotionEvent.getY() and check if:The formula is just interpretation of schools geometry for determining if dot is inside circle area or not. Refer to circle equation for Cartesian coordinates for more details.
Values explanation is:
(x + radius)and(y + radius)is the center of circle.(xTouch - (x + radius))is distance from touch point to center by X.(yTouch - (y + radius))is distance from touch point to center by Y.