Here you can find the source of getBitmapSize(Bitmap bitmap)
@TargetApi(12) public static int getBitmapSize(Bitmap bitmap)
//package com.java2s; import android.annotation.TargetApi; import android.graphics.Bitmap; import android.os.Build; public class Main { /**//w w w . j av a 2s. c om * Get the size in bytes of a bitmap in a BitmapDrawable. */ @TargetApi(12) public static int getBitmapSize(Bitmap bitmap) { if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB_MR1) { return bitmap.getByteCount(); } // Pre HC-MR1 return bitmap.getRowBytes() * bitmap.getHeight(); } }