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.
我可以使用 uiautomator api 编写代码来查找设备上的所有视图及其详细信息,而不是使用 uiautomatorviewer 并拍摄快照来查找所有详细信息吗?
使用Robotium,您可以获得设备上的所有视图及其详细信息。它提供了solo.getCurrentViews ()将返回当前显示在焦点活动或对话框中的视图对象的 ArrayList。
solo.getCurrentViews ()
UiObject代表一个视图。这是有关如何获取它的官方示例。