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.
在我的 android 应用程序(平板电脑)中,我想验证选择按钮后片段是否出现在屏幕上。有没有办法做到这一点?
由于您有权访问活动,因此您可以在测试中获取 FragmentManager 的实例。然后,您可以通过 id 或标签找到片段,并使用片段方法“isVisible”测试它是否可见,并将其设置为 true。
Fragment.isVisible() 的 javadoc 状态如果片段当前对用户可见,则返回 true。这意味着片段已被添加,其视图已附加到窗口,并且未被隐藏。