我目前正在尝试创建一个应用程序,当使用相机拍照时,保存图像时,它会保存到特定的文件夹位置,如果手机上当前不存在该文件夹,它会创建文件夹并保存文件到那个位置。尽管我已经尝试过,但我的代码目前不起作用。你能否看看我的代码并告诉我我需要做什么。
这是代码:
else if(v==camera){
Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
File newDirectory = new File(Environment.getExternalStorageDirectory() + "App_Pictures/");
String filename = new String("image1.jpeg");
File outputFile = new File(newDirectory, filename);
outputFile.mkdirs();
startActivity(intent);
}