15

我想知道是否decodeResource (Resources res, int id, BitmapFactory.Options opts)考虑到 drawable-ldpi、mdpi、hdpi 等文件夹。

我检查了源代码,它看起来不像那样,但我可能遗漏了一些东西。

(一般情况下,R.drawable. 在 Android 源中解析在哪里?我找不到它。)

4

1 回答 1

48

是的,它考虑到了这一点。例如,如果您这样做:

Resources res = getContext().getResources();
int id = R.drawable.image; 
Bitmap b = BitmapFactory.decodeResource(res, id);

如果所有可绘制文件夹中都存在“图像”,则位图将有所不同。所以我认为使用重载方法decodeResource (Resources res, int id, BitmapFactory.Options opts)将以相同的方式工作。

于 2012-08-01T09:24:06.790 回答