如何将图像和文本分享到Facebook应用程序

时间:2013-05-15 14:11:45

标签: android facebook image text share

我正在尝试分享图片和文字。 当我这样做时:

Intent share = new Intent(Intent.ACTION_SEND);
        share.setType("image/*");
        ByteArrayOutputStream bytes = new ByteArrayOutputStream();
        screenshot.compress(Bitmap.CompressFormat.JPEG, 100, bytes);
        File f = new File(Environment.getExternalStorageDirectory()
                + File.separator + "temporary_file.jpg");
        try {
            f.createNewFile();
            FileOutputStream fo = new FileOutputStream(f);
            fo.write(bytes.toByteArray());
        } catch (IOException e) {
            e.printStackTrace();
        }
        share.putExtra(Intent.EXTRA_STREAM,
                Uri.parse("file:///sdcard/temporary_file.jpg"));
        share.putExtra(android.content.Intent.EXTRA_TEXT, textToShare);
        startActivityForResult(Intent.createChooser(share, "Share Image"),
                FROM_SHARE);

它适用于所有应用程序(从Gmail等弹出式对话框中选择),除了facebook,facebook只获取图像而不是文本。 是否有一个whay将带有图像的额外文本传递给Facebook应用程序? 谢谢!

1 个答案:

答案 0 :(得分:3)

FACEBOOK中有一个错误我有同样的问题如果你真的想这样做,你需要使用facebook SDK并使用Facebook ShareDialog。