adb shell input
명령어는 TouchEvent 또는 KeyEvent를 발생시킵니다.
매크로를 만들거나 테스트 목적으로 자동화 스크립트를 만들 때 사용될 수 있습니다.
명령어 Usage
다음과 같은 형태로 명령어를 사용할 수 있습니다.
$ adb shell input [<source>] [-d DISPLAY_ID] <command> [<arg>...]
The sources are:
dpad
keyboard
mouse
touchpad
gamepad
touchnavigation
joystick
touchscreen
stylus
trackball
-d: specify the display ID.
(Default: -1 for key event, 0 for motion event if not specified.)
The commands and default sources are:
text <string> (Default: touchscreen)
keyevent [--longpress] <key code number or name> ... (Default: keyboard)
tap <x> <y> (Default: touchscreen)
swipe <x1> <y1> <x2> <y2> [duration(ms)] (Default: touchscreen)
draganddrop <x1> <y1> <x2> <y2> [duration(ms)] (Default: touchscreen)
press (Default: trackball)
roll <dx> <dy> (Default: trackball)
motionevent <DOWN|UP|MOVE> <x> <y> (Default: touchscreen)
KeyEvent 생성 예제
source를 키 이벤트가 생성되는 하드웨어 장치를 의미합니다.
displaId는 멀티 디스플레이 환경에서 사용됩니다. 다른 디스플레이에 존재하는 UI에 이벤트를 보낼 때 그 Display의 displayId를 설정하시면 됩니다. 화면이 Phone 뿐이라면 생략하시면 됩니다.
다음과 같이 입력하시면 Home key가 생성되어 시스템에 전달됩니다. command는 keyevent이며 arg는 3이 됩니다. 즉, KeyCode 3에 해당하는 KeyEvent를 전달하라는 의미입니다.
$ adb shell input keyboard keyevent 3
KeyCode는 Android Developer - KeyEvent에서 확인이 가능합니다.
사이트를 보시면 다음과 같이 KEYCODE_HOME
은 HOME 버튼을 의미하며 3으로 설정되어있습니다.
public static final int KEYCODE_HOME
Constant Value: 3 (0x00000003)
public static final int KEYCODE_BACK
Constant Value: 4 (0x00000004)
KEYCODE_BACK
을 전달하려면 다음과 같이 명령어에 4를 입력하면 됩니다. 이벤트는 시스템에 전달되어, 전면에 실행 중인 앱으로 다시 전달됩니다.
$ adb shell input keyboard keyevent 4
MotionEvent 생성 예제 (Tap: 짧게 터치)
아래 명령어는 x=200, y=2200
에 tap을 하라는 명령어입니다. 실행해보면 해당 좌표를 짧게 터치하는 것을 볼 수 있습니다.
$ adb shell input touchscreen tap 200 2200
MotionEvent 생성 예제 (Swipe: 터치 Down -> 드래그 -> 터치 Up)
아래 명령어는 swipe입니다. x=200, y=2200
를 터치 및 x=200, y=2400
까지 드래그한 뒤에 release합니다.
$ adb shell input touchscreen swipe 200 2200 200 2500
MotionEvent 생성 예제 (motionevent 명령어)
motionevent 명령어는 좀 더 섬세하게 터치 이벤트를 컨트롤하는 명령어입니다.
MotionEvent는 ACTION_DOWN
, ACTION_MOVE
, ACTION_UP
으로 이루어져있는데요.
이 단위로 이벤트를 생성하는 명령어입니다.
아래와 같이 나눠서 이벤트를 만들 수 있습니다.
$ adb shell input touchscreen motionevent DOWN 200 2200
$ adb shell input touchscreen motionevent MOVE 200 2500
$ adb shell input touchscreen motionevent UP 200 2500
결과는 input touchscreen swipe 200 2200 200 2500
와 거의 동일합니다. (이벤트 간의 시간 간격이 다를 수 있다는 것 빼고는 거의 동일)
Related Posts
- Android 14 - 사진/동영상 파일, 일부 접근 권한 소개
- Android - adb push, pull로 파일 복사, 다운로드
- Android 14 - 암시적 인텐트 변경사항 및 문제 해결
- Jetpack Compose - Row와 Column
- Android 13, AOSP 오픈소스 다운로드 및 빌드
- Android 13 - 세분화된 미디어 파일 권한
- Android 13에서 Notification 권한 요청, 알림 띄우기
- Android 13에서 'Access blocked: ComponentInfo' 에러 해결
- 에러 해결: android gradle plugin requires java 11 to run. you are currently using java 1.8.
- 안드로이드 - 코루틴과 Retrofit으로 비동기 통신 예제
- 안드로이드 - 코루틴으로 URL 이미지 불러오기
- Android - 진동, Vibrator, VibrationEffect 예제
- Some problems were found with the configuration of task 에러 수정
- Query method parameters should either be a type that can be converted into a database column or a List
- 우분투에서 Android 12 오픈소스 다운로드 및 빌드
- Android - ViewModel을 생성하는 방법
- Android - Transformations.map(), switchMap() 차이점
- Android - Transformations.distinctUntilChanged() 소개
- Android - TabLayout 구현 방법 (+ ViewPager2)
- Android - 휴대폰 전화번호 가져오는 방법
- Android 12 - Splash Screens 알아보기
- Android 12 - Incremental Install (Play as you Download) 소개
- Android - adb 명령어로 bugreport 로그 파일 추출
- Android - adb 명령어로 App 데이터 삭제
- Android - adb 명령어로 앱 비활성화, 활성화
- Android - adb 명령어로 특정 패키지의 PID 찾기
- Android - adb 명령어로 퍼미션 Grant 또는 Revoke
- Android - adb 명령어로 apk 설치, 삭제
- Android - adb 명령어로 특정 패키지의 프로세스 종료
- Android - adb 명령어로 screen capture 저장
- Android - adb 명령어로 System 앱 삭제, 설치
- Android - adb 명령어로 settings value 확인, 변경
- Android 12 - IntentFilter의 exported 명시적 선언
- Android - adb 명령어로 공장초기화(Factory reset)
- Android - adb logcat 명령어로 로그 출력