BitmapFactory.Options options =newBitmapFactory.Options();
options.inJustDecodeBounds=true;
img= BitmapFactory.decodeFile(fileSrc,options);
首先查看路径是否正确,如果没有问题,请检查是否获得权限READ_EXTERNAL_STORAGE
未获得权限,回报错filenotfound,找不到文件。
BitmapFactory.Options options =newBitmapFactory.Options();
options.inJustDecodeBounds=true;
img= BitmapFactory.decodeFile(fileSrc,options);
首先查看路径是否正确,如果没有问题,请检查是否获得权限READ_EXTERNAL_STORAGE
未获得权限,回报错filenotfound,找不到文件。
本文标题: BitmapFactory.decodeFile 返回null
本文链接:https://www.haomeiwen.com/subject/bigmyttx.html
网友评论