FileDocCategorySizeDatePackage
MotionEventCompatEclair.javaAPI DocAndroid 5.1 API1401Thu Mar 12 22:22:56 GMT 2015android.support.v4.view

MotionEventCompatEclair

public class MotionEventCompatEclair extends Object
Implementation of motion event compatibility that can call Eclair APIs.

Fields Summary
Constructors Summary
Methods Summary
public static intfindPointerIndex(android.view.MotionEvent event, int pointerId)

        return event.findPointerIndex(pointerId);
    
public static intgetPointerCount(android.view.MotionEvent event)

        return event.getPointerCount();
    
public static intgetPointerId(android.view.MotionEvent event, int pointerIndex)

        return event.getPointerId(pointerIndex);
    
public static floatgetX(android.view.MotionEvent event, int pointerIndex)

        return event.getX(pointerIndex);
    
public static floatgetY(android.view.MotionEvent event, int pointerIndex)

        return event.getY(pointerIndex);