我正在使用Kilobolt Android框架。使用自定义资产类,我使用BitmapFactory
加载图像并从InputStream
读取实际图像。现在我在从文件夹加载位图时遇到问题,它一直给我一个IOException
。
我尝试将我的图片文件直接复制到drawable-xxhdpi
文件夹。我不明白为什么这不起作用。
我的文件夹如下所示:
src
|--main
|---|--java
|---|---|--all the fancy java files :D
|---|--res
|---|---|--drawable-xxhdpi
|---|---|---|--fancy images
|---|---|--other folders and files...
|---|--other folders and files...
|--other folders and files...
答案 0 :(得分:2)
如果您尝试从res / drawable - **文件夹中的drawable获取位图,则应使用BitmapFactory.decodeResource(R.drawable.<drawable id>)
编辑:要获取decodeResource的资源,您需要有一个Context(例如Activity或Service),调用getResources()
来获取Resources对象