通过触摸事件判断当前是否触摸到某一个view

    public static boolean inTouchInslideOfView(View view, MotionEvent ev) {
        int[] location = new int[2];
        view.getLocationInWindow(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 true;
        }
        return false;
    }

猜你喜欢

转载自mr-cheney.iteye.com/blog/2237560
今日推荐