Skip to content

Commit

Permalink
input: add page (tldr-pages#5740)
Browse files Browse the repository at this point in the history
  • Loading branch information
marchersimon authored Apr 13, 2021
1 parent 660d097 commit a048bdb
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions pages/android/input.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# input

> Send event codes or touchscreen gestures to an Android device.
> Event codes can be inputting single characters, ending calls, volume up, etc.
> More information: <https://developer.android.com/reference/android/view/KeyEvent.html#constants_1>.
- Send an event code for a single character to an Android device:

`input keyevent {{event_code}}`

- Send a text to an Android device (`%s` represents spaces):

`input text "{{text}}"`

- Send a single tap to an Android device:

`input tap {{x_pos}} {{y_pos}}`

- Send a swipe gesture to an Android device:

`input swipe {{x_start}} {{y_start}} {{x_end}} {{y_end}} {{duration_in_ms}}`

- Send a long press to an Android device using a swipe gesture:

`input swipe {{x_pos}} {{y_pos}} {{x_pos}} {{y_pos}} {{duration_in_ms}}`

0 comments on commit a048bdb

Please sign in to comment.