我知道您可以在Java中使用以下功能:
indices
但是如何使用adb命令获得相同的效果。
答案 0 :(得分:0)
您可以使用以下内容:
显示键盘
adb shell input keyevent 108
(https://developer.android.com/reference/android/view/KeyEvent#KEYCODE_BUTTON_START)
隐藏键盘
adb shell input keyevent 111
https://developer.android.com/reference/android/view/KeyEvent#KEYCODE_ESCAPE
注意:EditText
必须在焦点上才能显示键盘。
您可以在AOSP
上查看所有KeyEvent