21 lines
494 B
Java
21 lines
494 B
Java
package androidx.core.view;
|
|
|
|
import android.view.MotionEvent;
|
|
|
|
/* loaded from: classes.dex */
|
|
public final class MotionEventCompat {
|
|
@Deprecated
|
|
public static int a(MotionEvent motionEvent) {
|
|
return motionEvent.getActionMasked();
|
|
}
|
|
|
|
@Deprecated
|
|
public static int b(MotionEvent motionEvent) {
|
|
return motionEvent.getPointerCount();
|
|
}
|
|
|
|
public static boolean a(MotionEvent motionEvent, int i) {
|
|
return (motionEvent.getSource() & i) == i;
|
|
}
|
|
}
|