我正在使用下一个代码来支持我的应用程序中的共享:
//create the send intent
Intent shareIntent = new Intent(android.content.Intent.ACTION_SEND);
//set the type
shareIntent.setType("text/plain");
//add a subject
shareIntent.putExtra(android.content.Intent.EXTRA_SUBJECT,"subject");
String msg = https://play.google.com/store/apps/detailsid=com.rovio.amazingalex.premium
//add the message
shareIntent.putExtra(android.content.Intent.EXTRA_TEXT, msg);
//start the chooser for sharing
startActivity(Intent.createChooser(shareIntent, "Sharing..."));
即使没有任何额外的图像从我身边,
facebook 采用随机图像,这不是我的应用程序的一部分,但有点与它相关联。
例如,当尝试分享“Amazing Alex”时,这是附上的图片:
如何更改此图像?