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 want the image that the user made to be shared when he clicks on the button

the image is an image he made using many features like paint etc .. I want when he clicks on the sharing button a sharing intent "share via." appears and let him choose where he wants it to be shared at

I found this code but I get an error from (path)

Intent sharingIntent = new Intent(Intent.ACTION_SEND);
Uri screenshotUri = Uri.parse(path);
sharingIntent.setType("image/png");
sharingIntent.putExtra(Intent.EXTRA_STREAM, screenshotUri);
startActivity(Intent.createChooser(sharingIntent, "Share image using"));

How can I do this?

share|improve this question
I heard that the picture must get saved first ,, so how do I make the image which is "currentBitmap" to be saved then shared where he chooses where .. – John Jr. South Jul 30 '12 at 17:55

1 Answer

up vote 0 down vote accepted

What do you put in the variable path?

Path is the route to the file where you have saved the bitmap previously (sdcard or internal app storage).

It's right that the picture must be saved first, but If you are not saving it now, how do you fill path variable?

share|improve this answer
so how do I save the picture so I can use the variable path ? – John Jr. South Jul 30 '12 at 19:33
Here you have an example: java2s.com/Code/Android/2D-Graphics/…. Once you have saved the file, you only have to pass its path to the intent. – Fran J Martínez Jul 30 '12 at 21:18
thanks Fran J Martinez – John Jr. South Jul 30 '12 at 23:09

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.