android 判断点击的位置是不是在指定的view上
1个回答
2017-03-20
展开全部
private boolean inRangeOfView(View view, MotionEvent ev){
int[] location = new int[2];
view.getLocationOnScreen(location);
int x = location[0];
int y = location[1];
if(ev.getX() < x ev.getX() > (x + view.getWidth()) ev.getY() < y ev.getY() > (y + view.getHeight())){
return false;
}
return true;
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询