1

我放了一个按钮来在 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 帐户,看到以下内容:

图片

如您所见,它应该是右侧正方形中的图像。我想知道如何放置该图像,我正在考虑放置我的图标应用程序

就像您分享 youtube 链接一样,该图像将是电影的第一张照片。

4

1 回答 1

1

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

于 2015-01-27T08:40:41.980 回答