Home | History | Annotate | Download | only in view

Lines Matching defs:MotionEvent

96      * A {@link MotionEvent} should be interpreted as absolute coordinates in
110 * A {@link MotionEvent} should be interpreted as relative movements in device-specific
122 * A {@link MotionEvent} should be interpreted as absolute coordinates in
132 * A {@link MotionEvent} should be interpreted as absolute joystick movements.
190 * by a stylus, examine the tool type returned by {@link MotionEvent#getToolType(int)}
195 * {@link MotionEvent#TOOL_TYPE_FINGER} and another pointer with tool type
196 * {@link MotionEvent#TOOL_TYPE_STYLUS}. So it is important to examine
198 * by {@link MotionEvent#getSource()}.
211 * {@link MotionEvent#getToolType(int)} for each individual pointer.
215 * {@link MotionEvent#TOOL_TYPE_FINGER} and another pointer with tool type
216 * {@link MotionEvent#TOOL_TYPE_STYLUS}. So it is important to examine
218 * by {@link MotionEvent#getSource()}.
299 * Constant for retrieving the range of values for {@link MotionEvent#AXIS_X}.
302 * @deprecated Use {@link MotionEvent#AXIS_X} instead.
305 public static final int MOTION_RANGE_X = MotionEvent.AXIS_X;
308 * Constant for retrieving the range of values for {@link MotionEvent#AXIS_Y}.
311 * @deprecated Use {@link MotionEvent#AXIS_Y} instead.
314 public static final int MOTION_RANGE_Y = MotionEvent.AXIS_Y;
317 * Constant for retrieving the range of values for {@link MotionEvent#AXIS_PRESSURE}.
320 * @deprecated Use {@link MotionEvent#AXIS_PRESSURE} instead.
323 public static final int MOTION_RANGE_PRESSURE = MotionEvent.AXIS_PRESSURE;
326 * Constant for retrieving the range of values for {@link MotionEvent#AXIS_SIZE}.
329 * @deprecated Use {@link MotionEvent#AXIS_SIZE} instead.
332 public static final int MOTION_RANGE_SIZE = MotionEvent.AXIS_SIZE;
335 * Constant for retrieving the range of values for {@link MotionEvent#AXIS_TOUCH_MAJOR}.
338 * @deprecated Use {@link MotionEvent#AXIS_TOUCH_MAJOR} instead.
341 public static final int MOTION_RANGE_TOUCH_MAJOR = MotionEvent.AXIS_TOUCH_MAJOR;
344 * Constant for retrieving the range of values for {@link MotionEvent#AXIS_TOUCH_MINOR}.
347 * @deprecated Use {@link MotionEvent#AXIS_TOUCH_MINOR} instead.
350 public static final int MOTION_RANGE_TOUCH_MINOR = MotionEvent.AXIS_TOUCH_MINOR;
353 * Constant for retrieving the range of values for {@link MotionEvent#AXIS_TOOL_MAJOR}.
356 * @deprecated Use {@link MotionEvent#AXIS_TOOL_MAJOR} instead.
359 public static final int MOTION_RANGE_TOOL_MAJOR = MotionEvent.AXIS_TOOL_MAJOR;
362 * Constant for retrieving the range of values for {@link MotionEvent#AXIS_TOOL_MINOR}.
365 * @deprecated Use {@link MotionEvent#AXIS_TOOL_MINOR} instead.
368 public static final int MOTION_RANGE_TOOL_MINOR = MotionEvent.AXIS_TOOL_MINOR;
371 * Constant for retrieving the range of values for {@link MotionEvent#AXIS_ORIENTATION}.
374 * @deprecated Use {@link MotionEvent#AXIS_ORIENTATION} instead.
377 public static final int MOTION_RANGE_ORIENTATION = MotionEvent.AXIS_ORIENTATION;
682 * Gets information about the range of values for a particular {@link MotionEvent} axis.
692 * @see MotionEvent#AXIS_X
693 * @see MotionEvent#AXIS_Y
707 * Gets information about the range of values for a particular {@link MotionEvent} axis
717 * @see MotionEvent#AXIS_X
718 * @see MotionEvent#AXIS_Y
838 * Provides information about the range of values for a particular {@link MotionEvent} axis.
1026 description.append(" ").append(MotionEvent.axisToString(range.mAxis));