Skip to content

Instantly share code, notes, and snippets.

@benigumocom
Created October 11, 2012 14:27
Show Gist options
  • Save benigumocom/3872748 to your computer and use it in GitHub Desktop.
Save benigumocom/3872748 to your computer and use it in GitHub Desktop.
インテントファイル渡し
File file = new File(ファイルパス); // 他アプリに渡すファイル
Intent intent = new Intent(Intent.ACTION_SEND); // データーを送信するインテント
intent.setType("image/png"); // データタイプの指定
intent.putExtra(Intent.EXTRA_SUBJECT, "件名");
intent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(file));
startActivity(intent);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment