MCPcopy Create free account

hub / github.com/dinuscxj/MultiTouchGestureDetector / functions

Functions30 in github.com/dinuscxj/MultiTouchGestureDetector

↓ 2 callersMethodgetMoveX
Return the X coordinate distance from the previous focus event to the current event. This value is defined as ({@link #mCurrentFocusX} - {@link #mPrev
multitouchgesturedetector/src/main/java/com/dinuscxj/gesture/MultiTouchGestureDetector.java:283
↓ 2 callersMethodgetMoveY
Return the Y coordinate distance from the previous focus event to the current event. This value is defined as ({@link #mCurrentFocusY} - {@link #mPrev
multitouchgesturedetector/src/main/java/com/dinuscxj/gesture/MultiTouchGestureDetector.java:294
↓ 2 callersMethodgetRotation
Return the average rotate between each of the pointers forming the gesture in progress through the focal point. ({@link #mCurrentRotation} - {@link #
multitouchgesturedetector/src/main/java/com/dinuscxj/gesture/MultiTouchGestureDetector.java:306
↓ 2 callersMethodgetScale
Return the scaling factor from the previous scale event to the current event. This value is defined as ({@link #mCurrentSpan} / {@link #mPreviousSpan}
multitouchgesturedetector/src/main/java/com/dinuscxj/gesture/MultiTouchGestureDetector.java:317
↓ 2 callersMethodonEnd
Responds to the end of a scale gesture. Reported by existing pointers going up. Once a touch has ended, {@link MultiTouchGestureDetector#getFocusX()}
multitouchgesturedetector/src/main/java/com/dinuscxj/gesture/MultiTouchGestureDetector.java:425
↓ 1 callersMethodgetEventTime
Return the event time of the current event being processed. @return Current event time in milliseconds.
multitouchgesturedetector/src/main/java/com/dinuscxj/gesture/MultiTouchGestureDetector.java:336
↓ 1 callersMethodonBegin
Responds to the beginning of a touch gesture. Reported by new pointers going down. @param detector The detector reporting the event - use this to
multitouchgesturedetector/src/main/java/com/dinuscxj/gesture/MultiTouchGestureDetector.java:412
↓ 1 callersMethodonMove
Responds to moving events for a gesture in progress. Reported by pointer motion. @param detector The detector reporting the event - use this to
multitouchgesturedetector/src/main/java/com/dinuscxj/gesture/MultiTouchGestureDetector.java:383
↓ 1 callersMethodonRotate
Responds to rotating events for a gesture in progress. Reported by pointer motion. @param detector The detector reporting the event - use this to
multitouchgesturedetector/src/main/java/com/dinuscxj/gesture/MultiTouchGestureDetector.java:398
↓ 1 callersMethodonScale
Responds to scaling events for a gesture in progress. Reported by pointer motion. @param detector The detector reporting the event - use this to
multitouchgesturedetector/src/main/java/com/dinuscxj/gesture/MultiTouchGestureDetector.java:367
MethodMultiTouchGestureDetector
Creates a MultiTouchGestureDetector with the supplied listener. You may only use this constructor from a {@link android.os.Looper Looper} thread. @pa
multitouchgesturedetector/src/main/java/com/dinuscxj/gesture/MultiTouchGestureDetector.java:53
MethodMultiTouchGestureView
(Context context)
app/src/main/java/com/dinuscxj/gesturedetector/demo/MultiTouchGestureView.java:23
Methodaddition_isCorrect
()
app/src/test/java/com/dinuscxj/gesturedetector/demo/ExampleUnitTest.java:13
MethodgetFocusX
Get the X coordinate of the current gesture's focal point. If a gesture is in progress, the focal point is between each of the pointers forming the ge
multitouchgesturedetector/src/main/java/com/dinuscxj/gesture/MultiTouchGestureDetector.java:258
MethodgetFocusY
Get the Y coordinate of the current gesture's focal point. If a gesture is in progress, the focal point is between each of the pointers forming the ge
multitouchgesturedetector/src/main/java/com/dinuscxj/gesture/MultiTouchGestureDetector.java:272
MethodgetTimeDelta
Return the time difference in milliseconds between the previous accepted scaling event and the current scaling event. @return Time difference since t
multitouchgesturedetector/src/main/java/com/dinuscxj/gesture/MultiTouchGestureDetector.java:327
MethodisInProgress
Returns {@code true} if a scale gesture is in progress.
multitouchgesturedetector/src/main/java/com/dinuscxj/gesture/MultiTouchGestureDetector.java:244
MethodonBegin
(MultiTouchGestureDetector detector)
multitouchgesturedetector/src/main/java/com/dinuscxj/gesture/MultiTouchGestureDetector.java:438
MethodonCreate
(Bundle savedInstanceState)
app/src/main/java/com/dinuscxj/gesturedetector/demo/MainActivity.java:8
MethodonDraw
(Canvas canvas)
app/src/main/java/com/dinuscxj/gesturedetector/demo/MultiTouchGestureView.java:42
MethodonEnd
(MultiTouchGestureDetector detector)
multitouchgesturedetector/src/main/java/com/dinuscxj/gesture/MultiTouchGestureDetector.java:442
MethodonMove
(MultiTouchGestureDetector detector)
multitouchgesturedetector/src/main/java/com/dinuscxj/gesture/MultiTouchGestureDetector.java:432
MethodonMove
(MultiTouchGestureDetector detector)
app/src/main/java/com/dinuscxj/gesturedetector/demo/MultiTouchGestureView.java:70
MethodonRotate
(MultiTouchGestureDetector detector)
multitouchgesturedetector/src/main/java/com/dinuscxj/gesture/MultiTouchGestureDetector.java:435
MethodonRotate
(MultiTouchGestureDetector detector)
app/src/main/java/com/dinuscxj/gesturedetector/demo/MultiTouchGestureView.java:78
MethodonScale
(MultiTouchGestureDetector detector)
multitouchgesturedetector/src/main/java/com/dinuscxj/gesture/MultiTouchGestureDetector.java:430
MethodonScale
(MultiTouchGestureDetector detector)
app/src/main/java/com/dinuscxj/gesturedetector/demo/MultiTouchGestureView.java:62
MethodonTouchEvent
Accepts MotionEvents and dispatches events to a {@link OnMultiTouchGestureListener} when appropriate. <p> Applications should pass a complete and con
multitouchgesturedetector/src/main/java/com/dinuscxj/gesture/MultiTouchGestureDetector.java:78
MethodonTouchEvent
(MotionEvent event)
app/src/main/java/com/dinuscxj/gesturedetector/demo/MultiTouchGestureView.java:36
MethoduseAppContext
()
app/src/androidTest/java/com/dinuscxj/gesturedetector/demo/ExampleInstrumentedTest.java:19