Home | History | Annotate | Download | only in gestures

Lines Matching full:link

3 parent.link=index.html
7 next.link=scale.html
54 <li>{@link android.view.MotionEvent#ACTION_DOWN}&mdash;For the first pointer that
56 always at index 0 in the {@link android.view.MotionEvent}.</li>
57 <li>{@link android.support.v4.view.MotionEventCompat#ACTION_POINTER_DOWN}&mdash;For
59 pointer is at the index returned by {@link android.support.v4.view.MotionEventCompat#getActionIndex getActionIndex()}.</li>
60 <li>{@link android.view.MotionEvent#ACTION_MOVE}&mdash;A change has happened during a press gesture.</li>
61 <li>{@link android.support.v4.view.MotionEventCompat#ACTION_POINTER_UP}&mdash;Sent when a non-primary pointer goes up.</li>
62 <li>{@link android.view.MotionEvent#ACTION_UP}&mdash;Sent when the last pointer leaves the screen.</li>
65 <p>You keep track of individual pointers within a {@link
69 <li><strong>Index</strong>: A {@link android.view.MotionEvent} effectively
71 within this array. Most of the {@link
85 as the pointer remains active. Use the {@link
88 gesture. Then for successive motion events, use the {@link
113 {@link android.view.MotionEvent#getActionMasked getActionMasked()} (or better yet, the compatability version
114 {@link android.support.v4.view.MotionEventCompat#getActionMasked MotionEventCompat.getActionMasked()}) to retrieve
116 {@link android.view.MotionEvent}. Unlike the older {@link android.view.MotionEvent#getAction getAction()}
117 method, {@link android.support.v4.view.MotionEventCompat#getActionMasked getActionMasked()} is designed to work with
120 {@link android.support.v4.view.MotionEventCompat#getActionIndex getActionIndex()} to return the index of
124 {@link android.support.v4.view.MotionEventCompat}
127 {@link android.support.v4.view.MotionEventCompat} to provide the best support for a wide range of
128 platforms. Note that {@link android.support.v4.view.MotionEventCompat} is <em>not</em> a
129 replacement for the {@link android.view.MotionEvent} class. Rather, it provides static utility
130 methods to which you pass your {@link android.view.MotionEvent} object in order to receive