Home | History | Annotate | Download | only in calendar

Lines Matching refs:detector

4159     public boolean onScaleBegin(ScaleGestureDetector detector) {
4161 float gestureCenterInPixels = detector.getFocusY() - DAY_HEADER_HEIGHT - mAlldayHeight;
4164 mStartingSpanY = Math.max(MIN_Y_SPAN, Math.abs(detector.getCurrentSpanY()));
4171 + "\tmCellHeight:" + mCellHeight + " SpanY:" + detector.getCurrentSpanY());
4178 public boolean onScale(ScaleGestureDetector detector) {
4179 float spanY = Math.max(MIN_Y_SPAN, Math.abs(detector.getCurrentSpanY()));
4195 int gestureCenterInPixels = (int) detector.getFocusY() - DAY_HEADER_HEIGHT - mAlldayHeight;
4203 + mCellHeight + " SpanY:" + detector.getCurrentSpanY());
4223 public void onScaleEnd(ScaleGestureDetector detector) {