如何通过意图而不是通过facebook sdk在Facebook上分享多张照片

时间:2014-09-11 10:23:54

标签: android facebook android-intent share photo

以下是我的代码并使用此代码,共享对话框中没有Facebook选项。

Intent  sendIntentmultiple = new Intent(Intent.ACTION_SEND_MULTIPLE);

sendIntentmultiple.setType("image/jpeg");
sendIntentmultiple.putExtra(Intent.EXTRA_TEXT, "“Just another nice click! Check it out now.”");
sendIntentmultiple.setType("text/plain");
System.out.println("shareimage_list"+shareimage_list);
//sendIntentmultiple.putExtra(Intent.EXTRA_STREAM, shareimage_list);
sendIntentmultiple.putParcelableArrayListExtra(Intent.EXTRA_STREAM, shareimage_list);
startActivity(sendIntentmultiple);

0 个答案:

没有答案