0

Is there a way to emulate the remote's numpad key presses (i.e. KeyEvent.KEYCODE_NUMPAD) in the Android TV Emulator?

YU No
  • 69
  • 1
  • 7

1 Answers1

1

You can emulate all key presses using adb shell command input keyevent. For numpad you can use the command like this: adb shell input keyevent KEYCODE_NUMPAD_1

mahdi
  • 598
  • 5
  • 22