触摸位置周围的半径

Radius around touched position

我有一个位于视图中的 X 和 Y 坐标的 ArrayList。现在我想检查用户是否触摸了视图,一些存储的 X 和 Y 坐标是否在触摸点周围的某个半径(如 20 像素)内。我怎样才能实现这个?

此致

使用毕达哥拉斯公式。

if(Math.sqrt(Math.pow(stored_x - touched_x, 2) + Math.pow(stored_y - touched_y, 2)) <= 20){
    //do thing
}