I want to use default camera and capture image. i want save image in sdcard/photofolder/ and save filename as curenttime format in sdcard/photofolder/ also display capture imag
You can get SDCard path like..
String root = Environment.getExternalStorageDirectory().toString();
new File(root + "/photofolder").mkdirs();
Then you can save a file to root + "/photofolder/20120830025700.jpg"
.
Have you requested permission to write onto SD card? Add the following string to you app manifest: