我知道呼叫系统摄像头是
Intent intent = new Intent();
intent.setAction("android.media.action.STILL_IMAGE_CAMERA");
startActivity(intent);
我想在 ImageView 中显示图片,但我不知道该怎么做。有没有人可以给我一个示例代码?
编辑1:我也需要商店
String strPath = Environment.getExternalStorageDirectory().toString();
File path = new File(strPath);
if(!path.exists())
path.mkdirs();
strFileName = "test.jpg";
strFilePath = strPath + "/" + strFileName;
File file = new File(strFilePath);
Uri uri = Uri.fromFile(file);
intent.putExtra(MediaStore.EXTRA_OUTPUT, uri);
我用up代码来存储,但是在拍照的时候怎么看呢?那就是预览。