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.
我正在使用DialogFragment兼容性包中的一个。我有一个Bitmap对话框关闭时需要回收的,但是当我findViewByID()在里面调用onDestroyView()它时返回null。我也尝试过保留对视图的引用,onCreateView()但在调用时它也为空onDestroyView()。
DialogFragment
Bitmap
findViewByID()
onDestroyView()
onCreateView()
如何DialogFragment在片段关闭时回收位图?
onDestroyView() 允许片段清理与其视图关联的资源,尝试在 onDismiss 或其他在 onDestroyView 之前调用的方法中回收位图