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.
有人知道使用 Robotium 检查片段是否存在的方法吗?
问候RC
我假设您想找到您知道活动或标签的片段的存在。
先调用getCurrentActivity()Solo 然后调用
getCurrentActivity()
getFragmentManager().findFragmentById()
或者
getSupportFragmentManager().findFragmentById()
如果您使用的是 v4 兼容性库。这将搜索页面上的所有片段并返回它。findFragmentByTag()如果您之前标记了片段,也可以使用。
findFragmentByTag()