In my application i override the onLowmemory method. It gets called every time. And my mobile is stuck. How to release memory in this method.
I am using below code :
@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();
}
Only using system.gc ... thank you.