これは、私が画像を保存するために使用する方法です。
private String saveImage (Context context, String name, Bitmap image){
ContextWrapper cw = new ContextWrapper(context);
File dirImages = cw.getDir(Imagenes, Context.MODE_PRIVATE);
File myPath = new File(dirImages, name + .png);
FileOutputStream fos = null;
try{
fos = new FileOutputStream(myPath);
image.compress(Bitmap.CompressFormat.JPEG, 10, fos);
fos.flush();
}catch (FileNotFoundException ex){
ex.printStackTrace();
}catch (IOException ex){
ex.printStackTrace();
}
return myPath.getAbsolutePath();
}
オーディオとビデオの保存に適応するにはどうすればよいですか?