Android 打开相机、相册和裁剪图片

Android 打开相机、相册和裁剪图片是基本上每个应用都需要用到的功能。在 Android 7.0 之后,不再支持 file:// 类似格式的 uri,所以继续使用原来的裁剪图片方法,会出现 FileUriExposedException 异常。简单来讲,我们要使用 FileProvider 类,使用虚拟的路径对文件路径进行映射,用 content:// 代替 file://。下面记录自己的处理方法,方便以后找回。

1、在 res/xml 新建 file_path.xml 文件



    

    

    

    

    

    


2、在 Manifest.xml 文件中添加








    
        
    


3、权限控制(这里用的是RxPermissions,可以换成其他)

compile 'com.tbruyelle.rxpermissions:rxpermissions:0.9.4@aar'
compile 'io.reactivex.rxjava2:rxandroid:2.0.1'
compile 'io.reactivex.rxjava2:rxjava:2.1.5'
compile 'com.jakewharton.rxbinding2:rxbinding:2.0.0'
compile 'com.hwangjr.rxbus:rxbus:1.0.6'

4、代码调用

/**
 * 选择图片
 */
private void changeImgae() {
    PermissionUtil.requestEach(this, new PermissionUtil.OnPermissionListener() {
        @Override
        public void onSucceed() {
            //授权成功后打开弹窗
            showDialog();
        }

        @Override
        public void onFailed(boolean showAgain) {

        }
    }, PermissionUtil.STORAGE, PermissionUtil.CAMERA);
}

/**
 * 显示选择相册和相机的弹窗
 */
private void showDialog() {
    AlertDialog.Builder builder = new AlertDialog.Builder(this);
    builder.setMessage("请选择图片获取方式");
    builder.setNegativeButton("相册", new DialogInterface.OnClickListener() {
        @Override
        public void onClick(DialogInterface dialogInterface, int i) {
            CameraUtil.openAlbum(MainActivity.this, REQUEST_CODE_ALBUM);
        }
    });
    builder.setNeutralButton("相机", new DialogInterface.OnClickListener() {
        @Override
        public void onClick(DialogInterface dialogInterface, int i) {
            CameraUtil.openCamera(MainActivity.this, imageFile, REQUEST_CODE_CAMER);
        }
    });
    builder.create().show();
}

/**
 * 裁剪图片
 * @param data
 */
private void startCrop(Uri data) {
    CropBean albumCropBean = new CropBean();
    albumCropBean.inputUri = data;
    albumCropBean.outputX = 300;
    albumCropBean.outputY = 300;
    albumCropBean.caculateAspect();
    albumCropBean.isReturnData = true;
    //裁剪后输出的图片文件
    albumCropBean.outputUri = Uri.fromFile(imageFile);
    //跳转裁剪
    CameraUtil.openCrop(this, albumCropBean, REQUEST_CODE_CROP);
}

@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
    super.onActivityResult(requestCode, resultCode, data);
    if (resultCode != RESULT_OK) {
        return;
    }
    switch (requestCode) {
        case REQUEST_CODE_ALBUM://相册
            startCrop(data.getData());
            break;
        case REQUEST_CODE_CAMER://相机
            startCrop(Uri.fromFile(imageFile));
            break;
        case REQUEST_CODE_CROP://裁剪完成
            //如果 CropBean.isReturnData=true,会返回bitmap
            Bitmap cropBitmap = data.getParcelableExtra("data");
            //裁剪后图片的 uri
            Uri outputUri = data.getData();
            break;
    }
}
    

其中 PermissionUtilCameraUtil 都是自己封装工具类,代码已经上传到 GitHub,这里就不贴出来了。

源码地址:

https://github.com/JairusTse/CameraUtil

参考

  • https://blog.csdn.net/lmj623565791/article/details/72859156
  • https://developer.android.com/about/versions/nougat/android-7.0-changes

你可能感兴趣的:(Android 打开相机、相册和裁剪图片)