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中有一个isRemoving片段的方法。根据文档,它只告诉片段何时正在被删除。但我需要知道一个片段是否已经被删除。有没有办法找到这个?我正在使用 api 级别 11。
isRemoving
您使用此方法的目的是什么?
还有其他方便的方法,例如isVisible().
isVisible()
如果您想确保在 中执行任何操作是安全的fragment,最好检查getActivity(),因为它是唯一一个可以告诉您何时您的片段可以合法执行操作的调用。
fragment
getActivity()