Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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..

share|improve this question
Can you add the logcat error? – aNi Nov 28 '11 at 8:04
@aNi error message is "an error occurred by loading the photo" – Binu Nov 28 '11 at 8:50
Ok, but can you add the logcat – aNi Nov 28 '11 at 13:45

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.