0

adb在 Windows 上连接后,我正在物理设备上测试第三方游戏。我正在使用以下方法捕获日志:

adb -d logcat > logcat.txt

在测试期间,我在游戏屏幕上点击了几次。如何找到我的触摸事件的坐标?

4

2 回答 2

0

The touch events do not get logged to the logcat by default. You need to use adb shell getevent or adb shell dumpsys input instead.

于 2018-06-25T01:29:22.673 回答
0

我知道这是一个老问题,但仍然希望我能帮助别人:

请看一下https://developer.android.com/studio/command-line/dumpsys

直接访问 shell 并使用输入选项运行 dumpsys 会返回您正在寻找的内容。

adb shell dumpsys input
于 2018-06-01T18:22:04.560 回答