我想在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 / *)存在一些问题。那么有人可以告诉解决方案是什么。提前谢谢。
答案 0 :(得分:1)
您可以使用以下库。在Facebook上分享文字和图片会很有帮助。以下是图书馆的链接