在列表视图的每一行中显示大缩略图时面临内存不足的问题。
问问题
121 次
1 回答
1
Clearly you're doing this wrong. Android gives you an extremely limited memory space. You should show thumbnails in your listview and only load the full images into memory (from the sdcard) when they've been selected. Also remember to recycle()
your Bitmaps if you're loading them manually.
于 2013-10-16T11:28:17.217 回答