Android - 无法使用intent在Facebook墙上共享Url和Image

时间:2014-12-23 04:36:38

标签: android facebook image android-intent

我需要使用意图在Facebook墙上分享网址和图片。如果我同时共享,则只有图片才会被共享,因为在意图中我会使用" image / *"。以下是代码段

Intent shareIntent = new Intent();
shareIntent.setAction(Intent.ACTION_SEND);
shareIntent.setType("image/*");
String imagePath = Environment.getExternalStorageDirectory()+"/sample_image.png";            
File imageFileToShare = new File(imagePath);             
Uri uri = Uri.fromFile(imageFileToShare);
shareIntent.putExtra(Intent.EXTRA_TEXT, "URL goes here"); 
shareIntent.putExtra(Intent.EXTRA_STREAM, uri);
shareIntent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
startActivity(shareIntent);

我需要分享网址和图片。任何人都可以帮我解决这个问题吗?

0 个答案:

没有答案