たとえば、このリンクを共有したい:
http://www.orientaldaily.com.my/index.php?option=com_k2&view=item&id=6780:&Itemid=198
ここにコードがあります
private void shareIt() {
Intent sharingIntent = new Intent(android.content.Intent.ACTION_SEND);
sharingIntent.setType("text/plain");
String shareBody = "Here is the share content body";
sharingIntent.putExtra(android.content.Intent.EXTRA_SUBJECT,
"Subject Here");
sharingIntent.putExtra(android.content.Intent.EXTRA_TEXT, shareBody);
startActivity(Intent.createChooser(sharingIntent, "Share via"));
}
そう、
1) Facebook へのリンクを共有するにはどうすればよいですか?
2) 共有リストを編集するには?