无法在Android应用程序的Facebook上共享文本和图像

时间:2016-02-26 10:50:51

标签: android facebook

我想在Facebook上分享一些文字和图片。代码是 - :

public void clickShareBtn(View view){
        try
        { Intent i = new Intent(Intent.ACTION_SEND);
            i.setType("image/*");
            i.putExtra(Intent.EXTRA_SUBJECT, "My application name");
            String sAux = "\nLet me recommend you this application\n\n";
            sAux = sAux + "https://play.google.com/store/apps/details?id=com.krsna \n\n";
            i.putExtra(Intent.EXTRA_TEXT, sAux);
            Uri uri = Uri.fromFile(convertBitmapToFile(bmp));
            i.putExtra(Intent.EXTRA_STREAM, uri);
            startActivity(Intent.createChooser(i, "choose one"));
        }
        catch(Exception e) {
            Log.i("Radhe", e.toString());
        }
    }

但是在Facebook上分享它只显示图像而没有描述。我认为setType(image / *)存在一些问题。那么有人可以告诉解决方案是什么。提前谢谢。

1 个答案:

答案 0 :(得分:1)

您可以使用以下库。在Facebook上分享文字和图片会很有帮助。以下是图书馆的链接

https://github.com/b099l3/FacebookImageShareIntent