1.当项目中包含大量的图片的时候或者图片的数量太大的时候:
BitmapFactory.Options options = new BitmapFactory.Options(); options.inSampleSize = 4
SoftReference<Bitmap> bitmap; bitmap = new SoftReference<Bitmap>(pBitmap); if(bitmap != null){ if(bitmap.get() != null && !bitmap.get().isRecycled()){ bitmap.get().recycle(); bitmap = null; } }
3.对复杂的ListView进行合理的设计与编码,注意Adapter的convertView的复用,以及holder机制的运用
public View getView(int position, View convertView, ViewGroup parent) { if (convertView == null) { v = mInflater.inflate(resource, parent, false); final int[] to = mTo; final int count = to.length; final View[] holder = new View[count]; for (int i = 0; i < count; i++) { holder[i] = v.findViewById(to[i]); } v.setTag(holder); } else { } }
4.1看布局图片中有没有大的图片,比如背景图片之类的东西,取出Xml中的相关设置,改在onCreate中手动Java代码设置背景图片
在Activity中的onDestory()中设置当前北京图片的bg.setCallback(null),防止Activity的背景图片得不到相应的释放
4.2在页面切换的时候,尽量减少对数据库的操作,反复的使用某个对象
5.Android堆内存可以自定义大小和优化Dalvik 虚拟机的内存
private final static int CWJ_HEAP_SIZE= 6*1024*1024; private final static float TARGET_HEAP_UTILIZATION = 0.75f; VMRuntime.getRuntime().setMinimumHeapSize(CWJ_HEAP_SIZE); VMRuntime.getRuntime().setTargetHeapUtilization(TARGET_HEAP_UTILIZATION)