2

たとえば、このリンクを共有したい:

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) 共有リストを編集するには?

4

1 に答える 1

1

テキストを手放してシステムにcreateChooser()渡したら。

  1. それはユーザーの選択次第であり、それによって ( app/source ) 共有することを選択します。
  2. 共有アプリの一覧は変更できません。(システムで管理しています)
于 2012-04-30T10:06:43.200 に答える