其他分享
首页 > 其他分享> > android – 清除编辑文本 – adb

android – 清除编辑文本 – adb

作者:互联网

如何使用shell命令清除焦点编辑文本.

我试过了

adb shell input keyevent KEYCODE_CLEAR // Not worked 
adb shell input keyevent KEYCODE_DEL // Delete only one char
adb shell input keyevent KEYCODE_FORWARD_DEL // Not worked

有了这个,我只能删除一个字符,有没有办法可以删除/清除焦点编辑文本.

解决方法:

这对我有用:

function clear_input() {
    adb shell input keyevent KEYCODE_MOVE_END
    adb shell input keyevent --longpress $(printf 'KEYCODE_DEL %.0s' {1..250})
}

然后:

clear_input

标签:android,adb,android-framework,android-shell
来源: https://codeday.me/bug/20190609/1203323.html