在Android中选择相机或图库作为图像
我在Camera或Gallery Image Selection上进行了艰苦的工作,并为此工作创建了一些util类。使用此类“选择相机或图库太容易了”的类
,仅花了5-10分钟的开发时间。
步骤1:在您的代码中添加这些类。
ImagePickerUtils:-http: //www.codesend.com/view/f8f7c637716bf1c693d1490635ed49b3/
BitmapUtils:-http:
//www.codesend.com/view/81c1c2a3f39f1f7e627f01f67be282cf/
ConvertUriToFilePath:-http:
//www.codesend.com/view/f4668a29860235dd1b66eb419c5a58b5/
MediaUtils: - https://codeshare.io/5vKEMl
我们需要在清单中添加以下权限:
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-feature android:name="android.hardware.camera" />
<uses-feature android:name="android.hardware.camera.autofocus" />
此类函数(checkAndRequestPermissions)自动检查 Android-Marshmallow和Android-Nougat中的权限。
第2步。调用相机类以启动相机意图:
//Create a global veriable .
private Uri mCameraUri;
private static final int CAMERA_REQUEST_CODE = 100;
// Call this function when you wants to select or capture an Image.
mCameraUri = ImagePickerUtils.createTakePictureIntent(this, CAMERA_REQUEST_CODE);
步骤3:在活动中添加onActivityResult以便从Intent接收数据
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
if (resultCode == Activity.RESULT_OK) {
Uri fileUri = ImagePickerUtils.getFileUriOfImage(this, data, mCameraUri);
try {
Bitmap bitmap = null;
if (CAMERA_REQUEST_CODE == requestCode) {
bitmap = new BitmapUtils().getDownsampledBitmap(this, fileUri, imageView.getWidth(), imageView.getHeight());
}
if (bitmap != null)
imageView.setImageBitmap(bitmap);
} catch (Exception e) {
e.printStackTrace();
}
}
}
希望对您有帮助,如果有任何建议可以改善这些课程,请在评论中添加您的评论。