Android 开发绕不过的坑:你的 Bitmap 究竟占多大内存?
对于bitmap占内存我发现自己也存在很大的误解。还好浩神推荐我看了这篇文章,才知道!为了防止这篇文章丢失,我决定把它转发到我的简书上面。
public final int getrowBytes() {
if (mRecycled) {
Log.w(TAG, "Called getRowBytes() on a recycle()'d bitmap! This is undefined behavior!");
}
return nativeRowBytes(mFinalizer.mNativeBitmap);
}
BitmapFactory.cpp