在Facebook上与图像图标分享Android应用程序

时间:2013-03-10 10:11:56

标签: android facebook image icons

我在Facebook上点了一个按钮来分享我的Android应用程序,所以我编写了以下代码

Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType("text/plain");
// add the app link
intent.putExtra(Intent.EXTRA_TEXT, "http://play.google.com/store/apps/details?  id=com.phonelight.realparrot");
startActivity(Intent.createChooser(intent, "Share with Facebook"));

分享后,我打开了我的Facebook帐户,看到了以下内容:

image

如您所见,它应该是右方的图像。我想知道如何放置该图像,我想放置我的图标应用程序

如果您共享YouTube链接,则图像将是电影的第一个镜头。

1 个答案:

答案 0 :(得分:0)

更改intent.setType("text/plain");intent.setType("image/*"); 然后添加intent.putExtra(Intent.EXTRA_STREAM, myImageContentUri);