Skip to content

Instantly share code, notes, and snippets.

@kernelhcy
Created August 7, 2013 04:58
Show Gist options
  • Save kernelhcy/6171308 to your computer and use it in GitHub Desktop.
Save kernelhcy/6171308 to your computer and use it in GitHub Desktop.
Android中调用相机拍照
Intent itb = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
itb.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(capturePicFile));
startActivityForResult(itb);
//设置MediaStore.EXTRA_OUTPUT可以获取原始大小的图片,否则,相机仅仅返回小图片。
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment