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 资源的内存,例如TextView,ImageView等,onDestroy()因为它们正在消耗内存并告诉我如何释放内存。
TextView
ImageView
onDestroy()
垃圾收集器会为你释放资源。
只要确保您没有持有不再需要的参考资料。
您可以尝试在 onDestroy() 回调方法中将引用设置为 null。
此外,您可以使用 Memory Analyzer Tool 进行进一步调查。