Android项目开发经验汇总
1、图片byte数据转Bitmap使用Bitmap bitmap = BitmapFactory.decodeFile(file.getAbsolutePath())容易导致内存溢出。public static Bitmap decodeImg(byte[] imgByte) { Bitmap bitmap = null; InputStream inpu