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'm making an app for Android. I have a gallery of photos, and I'd want to offer the possibility to share the imageswitcher on Facebook clicking a button (only the photo that is being shown in that moment). How can I do this?

Thanks!

share|improve this question
What you have tried? – M Mohsin Naeem Aug 16 '12 at 10:18

1 Answer

up vote 0 down vote accepted

If you are familiar with the Facebook SDK for Android, try this:

//Getting the image
    Bitmap bm = theImageViewToUpload.getDrawingCache();
    byte[] bArray = null;
    ByteArrayOutputStream baoStream = new ByteArrayOutputStream();
    bm.compress(Bitmap.CompressFormat.JPEG, 100, baoStream);
    bArray = baoStream.toByteArray();

    Bundle bund = new Bundle();
    bund.putString(Facebook.TOKEN, access_token);
    bundle.putString("caption", "This is your image-caption on Facebook");
    bund.putByteArray("picture", bArray);

    //Uploading to Facebook
    try {
        fb.request("me/photos", bund, "POST");
    } catch (FileNotFoundException e) {
        e.printStackTrace();
    } catch (MalformedURLException e) {
        e.printStackTrace();
    } catch (IOException e) {
        e.printStackTrace();
    }

If you are not familiar with the Facebook SDK, I'm not planning on teaching you everything in an answer here, but take a look at their reference: http://developers.facebook.com/docs/reference/androidsdk/

Edit: Add this code to your onClick of the button you are planning to use.

share|improve this answer
Ok i will try it! many thanks! :) – imtheuser Aug 20 '12 at 15:55

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.