私は、WhatsApp、Twitter、Facebook、GMailなどのソーシャルネットワークでカスタムメッセージを共有するために、intentとAction.SENDを使用しています。GmailやFacebook以外のアプリケーションではすべて問題ありません。Facebookでも何かを共有するようにコードをカスタマイズするにはどうすればよいですか?Facebook SDKを使用してFacebookで問題なく共有していますが、インテントを使用して共有したいと思います。
これは私が使用するものです:
Intent sendIntent = new Intent();
sendIntent.setAction(Intent.ACTION_SEND);
sendIntent.putExtra(Intent.EXTRA_TEXT, knowTitle+"Read the full article via MomsApp by EnfaMama A+ at http://meadjohnsonasia.com.my/mobileapp");
sendIntent.putExtra(Intent.EXTRA_SUBJECT, "I just read "+knowTitle);
sendIntent.setType("*/*");
startActivity(Intent.createChooser(sendIntent, "Share Your Favorite Article"));