diff options
author | Jeff Brown <jeffbrown@google.com> | 2013-04-10 03:24:30 -0700 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2013-04-10 03:24:30 -0700 |
commit | 38bfe9eca0134dd5f66dafeeb6fa10558f9f4394 (patch) | |
tree | 0afd466e739e29c8d8e8045ff91bfb6ccbe66944 /cmds | |
parent | f1cee03bf0e5d3144947609a23665d950e385635 (diff) | |
parent | a9574e3361e168671d627071e26280f69d0d081b (diff) | |
download | frameworks_base-38bfe9eca0134dd5f66dafeeb6fa10558f9f4394.zip frameworks_base-38bfe9eca0134dd5f66dafeeb6fa10558f9f4394.tar.gz frameworks_base-38bfe9eca0134dd5f66dafeeb6fa10558f9f4394.tar.bz2 |
am a9574e33: Add touchnavigation to input debugging command.
* commit 'a9574e3361e168671d627071e26280f69d0d081b':
Add touchnavigation to input debugging command.
Diffstat (limited to 'cmds')
-rw-r--r-- | cmds/input/src/com/android/commands/input/Input.java | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/cmds/input/src/com/android/commands/input/Input.java b/cmds/input/src/com/android/commands/input/Input.java index cdbc405..e43501c 100644 --- a/cmds/input/src/com/android/commands/input/Input.java +++ b/cmds/input/src/com/android/commands/input/Input.java @@ -75,11 +75,14 @@ public class Input { Float.parseFloat(args[3]), Float.parseFloat(args[4]), -1); return; } - } else if (command.equals("touchscreen") || command.equals("touchpad")) { + } else if (command.equals("touchscreen") || command.equals("touchpad") + || command.equals("touchnavigation")) { // determine input source int inputSource = InputDevice.SOURCE_TOUCHSCREEN; if (command.equals("touchpad")) { inputSource = InputDevice.SOURCE_TOUCHPAD; + } else if (command.equals("touchnavigation")) { + inputSource = InputDevice.SOURCE_TOUCH_NAVIGATION; } // determine subcommand if (args.length > 1) { @@ -247,8 +250,9 @@ public class Input { System.err.println("usage: input ..."); System.err.println(" input text <string>"); System.err.println(" input keyevent <key code number or name>"); - System.err.println(" input [touchscreen|touchpad] tap <x> <y>"); - System.err.println(" input [touchscreen|touchpad] swipe <x1> <y1> <x2> <y2> [duration(ms)]"); + System.err.println(" input [touchscreen|touchpad|touchnavigation] tap <x> <y>"); + System.err.println(" input [touchscreen|touchpad|touchnavigation] swipe " + + "<x1> <y1> <x2> <y2> [duration(ms)]"); System.err.println(" input trackball press"); System.err.println(" input trackball roll <dx> <dy>"); } |