Slide 71
Slide 71 text
val loc = IntArray(2)
slider.getLocationOnScreen(loc)
val rect1 = Rect(0,
loc[1],
/*exclusion width*/,
loc[1] + slider.height)
val rect2 = Rect(loc[0] + slider.width - /*exclusion width*/,
loc[1],
loc[0] + slider.width,
loc[1] + slider.height)
//Call on onDraw or onLayout
setSystemGestureExclusionRects(view, listOf(rect1, rect2))