码迷,mamicode.com
首页 > 移动开发 > 详细

Android开发(二十八)——基础功能函数

时间:2015-07-12 17:16:49      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:

 

 

/**
 * 判断事件是否在控件中
 * 
 * @param view
 * @param ev
 * @return
 * @see http://m.blog.csdn.net/blog/aygxylxk/8950268
 */
public static boolean inRangeOfView(View view, MotionEvent ev) {
    int[] location = new int[2];
    view.getLocationOnScreen(location);
    int x = location[0];
    int y = location[1];
    if (ev.getRawX() < x || ev.getRawX() > (x + view.getWidth())
            || ev.getRawY() < y || ev.getRawY() > (y + view.getHeight())) {
        return false;
    }
    return true;
}




/**
* 判断是否在view中
* If the motion event was relative to the view * which in ignored view list,return true; * * @param ev * @param v * @return * @see https://github.com/SpecialCyCi/AndroidResideMenu/blob/master/ResideMenu/src/com/special/ResideMenu/ResideMenu.java */ private boolean isInIgnoredView(MotionEvent ev,View v) { Rect rect = new Rect(); v.getGlobalVisibleRect(rect); if (rect.contains((int) ev.getX(), (int) ev.getY())) return true; return false; }

 

Android开发(二十八)——基础功能函数

标签:

原文地址:http://www.cnblogs.com/ccdc/p/4618064.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!