遇到知识点总结

  这段时间发现一个现象,在做项目中遇到一些问题,顺手百度Google找到答案之后,用在项目里面,但是知识点又比较琐碎,也不至于开一篇博客去写,所有决定以后遇到的都放在这篇博客里面,类似笔记的效果,今天先占个坑。

 =======4.25更新=======

判断触摸点是否在需要的View中

 if(event.getAction() == MotionEvent.ACTION_DOWN){
            // 判断触摸点是否在ImageView中
            Rect rect = new Rect();
            int[] location = new int[2];
            tipImageView.getDrawingRect(rect);
            tipImageView.getLocationOnScreen(location);
            rect.left = location[0];
            rect.top = location[1];
            rect.right = rect.right + location[0];
            rect.bottom = rect.bottom + location[1];
            if (rect.contains((int)event.getRawX(), (int)event.getRawY())){
                isTouch = true;
            }
        }
触摸事件滑动的最短距离

ViewConfiguration.get(getContext()).getScaledTouchSlop()



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值