我在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链接,则图像将是电影的第一个镜头。
答案 0 :(得分:0)
更改intent.setType("text/plain");
到intent.setType("image/*");
然后添加intent.putExtra(Intent.EXTRA_STREAM, myImageContentUri);