近来再次阅读一遍 android 开发官网的 displaying bitmaps efficiently 。
其中有一段,讲到 bitmap 在内存中的分布问题
On Android 2.3.3 (API level 10) and lower, the backing pixel data for a bitmap is stored in native memory. It is separate from the bitmap itself, which is stored in the Dalvik heap.
这里的 backing pixel 和 bitmap 自身对象有啥区别
1
exch4nge 2015-10-23 16:06:04 +08:00
具体数据 和 含有指向这个具体数据的指针的对象 的区别?对不起,我瞎猜的,我不懂
|
2
colatin 2015-10-23 16:15:34 +08:00
多个 bitmap 可能共享同一块像素数据
|