Androidでの画像のカメラまたはギャラリーの選択
私はカメラまたはギャラリーの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を追加します
@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();
}
}
}
これらのクラスを改善するための提案がある場合は、コメントにレビューを追加してください。