在我的应用程序中,我覆盖了 onLowmemory 方法。每次都会调用它。而且我的手机卡住了。这种方法如何释放内存。
我正在使用以下代码:
@Override
public void onLowMemory() {
// TODO Auto-generated method stub
super.onLowMemory();
System.out.println("*************************************************");
System.out.println("********** on low memory ************************");
System.out.println("*************************************************");
System.gc();
}
仅使用 system.gc ...谢谢。