打开相机与相册

//打开相机

//打开相机
Intent in = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
//将图片放到SD card
in.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(new File(path)));
startActivityForResult(in, 100);
Toast.makeText(Xie.this, "ooooo", Toast.LENGTH_SHORT).show();

//打开相册

//调取系统的相册  Intent.ACTION_PICK相册
Intent it = new Intent(Intent.ACTION_PICK);
//设置格式
it.setType("image/*");
startActivityForResult(it, 3000);
popupWindow.dismiss();

你可能感兴趣的:(打开相机与相册)