List of usage examples for android.view InputDevice SOURCE_TOUCH_NAVIGATION
int SOURCE_TOUCH_NAVIGATION
To view the source code for android.view InputDevice SOURCE_TOUCH_NAVIGATION.
Click Source Link
From source file:com.google.fpl.voltair.VoltAirActivity.java
private static boolean isTouchNavigationEvent(InputEvent event) { return isFromSource(event, InputDevice.SOURCE_TOUCH_NAVIGATION) && isFromSource(event, InputDevice.SOURCE_KEYBOARD); }