重複の可能性:
FacebookのAndroid共有インテント
FacebookのテキストとリンクをAndroidの共有インテントと共有しようとしていますが、機能しません。これが私のコードです
Intent sendIntent = new Intent();
sendIntent.setAction(Intent.ACTION_SEND);
sendIntent.setType("text/plain");
sendIntent.putExtra(Intent.EXTRA_TEXT,
"some text here to share" + "https://maps.google.com/maps?saddr=-33.4429,+-70.6539");
startActivity(Intent.createChooser(sendIntent, getResources().getText(R.string.d_title)));
しかし、リンクが共有されているだけで、テキストが欠落しています... Twitterでは正常に機能しますが、Facebookでは機能しません。助けてください:Sありがとう