Skip to content

Instantly share code, notes, and snippets.

@masarugen
Created August 14, 2012 08:17
Show Gist options
  • Save masarugen/3347479 to your computer and use it in GitHub Desktop.
Save masarugen/3347479 to your computer and use it in GitHub Desktop.
Intent intent = new Intent();
intent.setAction(MediaStore.ACTION_IMAGE_CAPTURE);
intent.addCategory(Intent.CATEGORY_DEFAULT);
startActivityForResult(intent, 0); // ここの0の番号で呼び出し元と呼び出し先で対象かどうか判断する
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment