今天使用LruCache写demo的时候,要获取Bitmap的大小
于是就用到了
return bitmap.getRowBytes() * bitmap.getHeight();// 获取大小并返回
//Bitmap所占用的内存空间数等于Bitmap的每一行所占用的空间数乘以Bitmap的行数为什么不用bitmap.getByteCount()呢?因为getByteCount要求的API版本较高,考虑到兼容性使用上面的方法1、getRowBytes:Since API Level 12、getByteCount:Since API Level 12查看Bitmap源码- public final int getByteCount() {
- return getRowBytes() * getHeight();
- }
所以API 12 以后getByteCount() = getRowBytes() * getHeight();在计算Bitmap所占空间时上面的方法或许有帮助。
补充:
-
- /**
- * 得到bitmap的大小
- */
- public static int getBitmapSize(Bitmap bitmap) {
- if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) { //API 19
- return bitmap.getAllocationByteCount();
- }
- if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB_MR1) { //API 12
- return bitmap.getByteCount();
- }
- // 在低版本中用一行的字节x高度
- return bitmap.getRowBytes() * bitmap.getHeight(); //earlier version
- }