Home | History | Annotate | Download | only in view

Lines Matching defs:slop

910         final int slop = ViewConfiguration.get(context).getScaledWindowTouchSlop();
912 return (x < -slop) || (y < -slop)
913 || (x > (decorView.getWidth()+slop))
914 || (y > (decorView.getHeight()+slop));