我正在尝试将相机拍摄的图像保存到设备的INTERNAL存储中,然后将其用作ImageView,但我无法访问该文件。这一切都是出于教育目的。我有一个按钮来调用相机应用程序作为子活动。
public void addListener() {
Button b = (Button)findViewById(R.id.snap);
b.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
File picturesDirectory;
picturesDirectory = getFilesDir();
imageFile = new File(picturesDirectory, "passspoints_image");
Log.d(DEBUGTAG, imageFile.getAbsolutePath());
Intent i = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
i.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(imageFile));
startActivityForResult(i, PHOTO_TAKEN);
}
});
}
然后我试图访问该文件。
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
switch(requestCode) {
case PHOTO_TAKEN:
Log.d(DEBUGTAG, imageFile.getAbsolutePath());
Bitmap photo = BitmapFactory.decodeFile(imageFile.getAbsolutePath());
try {
photo = rotateImageIfRequired(photo, Uri.fromFile(imageFile));
} catch (IOException e) {
e.printStackTrace();
}
if(photo != null) {
ImageView imageView = (ImageView)findViewById(R.id.imageView);
imageView.setImageBitmap(photo);
} else {
Toast.makeText(this, "Unable to read photo file", Toast.LENGTH_LONG).
show();
}
break;
}
}
这是调试标记的路径:
/data/data/tk.crackedbunny.www.takingphotostest/files/passspoints_image
这是错误消息:
E/BitmapFactory: Unable to decode stream: java.io.FileNotFoundException: /data/data/tk.crackedbunny.www.takingphotostest/files/passspoints_image: open failed: ENOENT (No such file or directory)
在此之前我已经设法使用外部存储设备执行此操作,但我想在外部存储空间不可用的情况下使用内部存储设备。
感谢。
答案 0 :(得分:0)
passspoints_image 图片名称?如何为其添加扩展名,例如 passspoints_image.jpg ?
或者您的 AndroidManifest.xml 文件中是否有读/写权限?