try {
File imgFile = new File("C:\\imageedit_7_6497580408.png");
Bitmap imgBitmap = BitmapFactory.decodeFile(imgFile.getAbsolutePath());
imageView.setImageBitmap(imgBitmap);
} catch (Exception e) {
e.printStackTrace();
}
这是错误E/BitmapFactory:无法解码流:java.io.FileNotFoundException:/C:\imageedit_7_6497580408.png(没有这样的文件或目录)
我想在imageView中设置图像,但要使用PC中图像的绝对路径。我不想使用模拟器库,我想从PC中获取图像
1条答案
按热度按时间zaq34kh61#
将图像复制到drawable文件夹中。