I am using a camera application in android. In my application, the image that captured is saved into SDCard as shown bellow,
PictureCallback jpegCallback = new PictureCallback()
{
public void onPictureTaken(byte[] data, Camera camera)
{
FileOutputStream outStream = null;
try
{
outStream = new FileOutputStream(String.format("/sdcard/image01.jpg", System.currentTimeMillis()));
sendBroadcast(new Intent(Intent.ACTION_MEDIA_MOUNTED, Uri.parse("file://"+ Environment.getExternalStorageDirectory())));
outStream.write(data);
outStream.close();
Log.d(TAG, "onPictureTaken - wrote bytes: " + data.length);
}
catch (FileNotFoundException e)
{
e.printStackTrace();
}
catch (IOException e)
{
e.printStackTrace();
}
finally
{
}
Log.d(TAG, "onPictureTaken - jpeg");
}
};
I want to share the above image that saved. For that Im used the code as shown bellow,
Intent sharingIntent = new Intent(Intent.ACTION_SEND);
Log.i("Action Send", "ACTION_SEND");
Uri screenshotUri = Uri.parse("file://sdcard/image01.jpg");
Log.i("Got imge", "Got img");
sharingIntent.setType("image/jpg");
sharingIntent.putExtra(Intent.EXTRA_STREAM, screenshotUri);
startActivity(Intent.createChooser(sharingIntent, "Share image using"));
I used the line "Uri screenshotUri = Uri.parse("file://sdcard/image01.jpg")" for parsing the image path as shown above. But i can't access the path for image that saved in sdcard(it shows "An error occured while loading the photo"). I want to know how to implement path for parsing.If anyone knows about it please help me..