Skip to content

Instantly share code, notes, and snippets.

@kernelhcy
Created August 7, 2013 05:05
Show Gist options
  • Save kernelhcy/6171351 to your computer and use it in GitHub Desktop.
Save kernelhcy/6171351 to your computer and use it in GitHub Desktop.
Android获取本地图片
Intent itb = new Intent();
itb.setType("image/*");
itb.setAction(Intent.ACTION_GET_CONTENT);
itb.putExtra("crop", "true"); //选择后对图片进行剪裁
itb.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(capturePicFile));
startActivityForResult(itb, GET_IMAGE_FROM_LOCAL);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment