次のコードを使用して、アプリケーションでの共有をサポートしています:
//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」を共有しようとすると、次の画像が添付されます。
この画像を変更するにはどうすればよいですか?