Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否有任何 adb 命令可以列出 Andoird 应用程序上当前活动的所有元素? 我的意思是,我可以使用 adb shell 并列出 FocusedActivity 的所有可用元素(ID 或层次结构)吗?
谢谢
使用此命令
adb shell uiautomator dump
您将在此处获得一个 XML 文件,一个带有当前 UI 层次结构转储的 XML
UI hierchary dumped to: /sdcard/window_dump.xml
然后,您可以通过从 Android Studio 设备资源管理器访问它来下载它。