так я могу сохранить свою фотографию на SD-карте.
OutputStream stream = null;
File tmpFile = creatTempFile();
try {
stream = new FileOutputStream(tmpFile);
} catch (FileNotFoundException e) {
e.printStackTrace();
}
yourImage.compress(Bitmap.CompressFormat.JPEG, 80, stream);
private File creatTempFile(){
final File path = new File( Environment.getExternalStorageDirectory(), "folder_name" );
if(!path.exists()){
path.mkdirs();
}
return new File(path, "file_name");
}
извините, вчера я хочу скопировать сюда свои коды, но скопируйте коды беспокойства, это правильно.