Answers:
看看如何在Android上模拟按键事件,并搜索“ KEYCODE_VOLUME_UP”和“ KEYCODE_VOLUME_DOWN”。
可以通过执行“输入”来生成事件:
#local shell:
input keyevent 24 #vol up
input keyevent 25 #vol down
#remotely using ssh
ssh your-phone input keyevent 24 #vol up
ssh your-phone input keyevent 25 #vol down
# 'su -c command' to make it run as root (if not already). EDIT: now escaped properly.
ssh your-phone su -c "input\ keyevent\ 24" #vol up
ssh your-phone su -c "input\ keyevent\ 25" #vol down"
我猜您的外壳最有可能需要适当的权限来触发输入事件。如果您进行公钥身份验证并将私钥保持在内存中(ssh-add),则可以制作包装器脚本,然后执行此脚本而无需询问密码。注意: “ su”和“ input”都有相当大的开销,在我的HTC Desire上,单个音量调整总共需要2.5秒才能完成。
编辑2:
shell@android:/ $ id
uid=2000(shell) gid=2000(shell) groups=1003(graphics),1004(input),[...]
shell@android:/ $ time input keyevent 24
0m0.92s real 0m0.29s user 0m0.06s system
似乎您必须是输入组的成员(此处为GID = 2004),才能使用'input'生成关键事件。另外,我注意到屏幕不必锁定(和/或关闭),因为锁定最终将消耗所有按键事件。另请注意,该命令将花费几乎1秒钟的时间。
I/Input ( 2502): InjectKeyEvent: KeyEvent { action=ACTION_DOWN, keyCode=KEYCODE_VOLUME_UP, scanCode=0, metaState=0, flags=0x0, repeatCount=0, eventTime=399847, downTime=399847, deviceId=-1, source=0x101 } I/Input ( 2502): InjectKeyEvent: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_VOLUME_UP, scanCode=0, metaState=0, flags=0x0, repeatCount=0, eventTime=399847, downTime=399847, deviceId=-1, source=0x101 }
。我必须补充一点,我是Android新手。