Finds cases where the wrong call is made, such as calling onMeasure instead of measure
onMeasure
measure
Custom views typically need to call measure() on their children, not onMeasure. Ditto for onDraw, onLayout, etc.
measure()