我的代碼:爲什麼BitmapFactory.decodeFile返回null?
BitmapFactory.Options opt = new BitmapFactory.Options();
opt.inJustDecodeBounds = true;
Bitmap rotateBmp = BitmapFactory.decodeFile("/storage/sdcard0/FastBurstCamera/2014-09-15 05-24-07-461.jpg", opt);
文件/存儲/ sdcard0/FastBurstCamera/2014年9月15日05-24-07-461.jpg存在,但rotateBmp是空的,爲什麼?
感謝您的好意,根據您的建議,我刪除了「opt.inJustDecodeBounds = true;」,然後它就可以工作。再次感謝你! – 2014-09-23 11:57:46