List of usage examples for android.view InputDevice SOURCE_JOYSTICK
int SOURCE_JOYSTICK
To view the source code for android.view InputDevice SOURCE_JOYSTICK.
Click Source Link
From source file:com.google.fpl.voltair.VoltAirActivity.java
private static boolean isGamepadEvent(KeyEvent event) { return isFromSource(event, InputDevice.SOURCE_JOYSTICK) || isFromSource(event, InputDevice.SOURCE_GAMEPAD); }