web-dev-qa-db-ja.com

Android:ギャラリーから選択した写真をビットマップに設定する方法

ここでリスナーとしてコードを介してギャラリーへのアクセスをユーザーに求めています:

Intent photoPickerIntent = new Intent(Intent.ACTION_PICK);
photoPickerIntent.setType("image/*");
startActivityForResult(photoPickerIntent, SELECT_PHOTO);

ただし、選択した写真に変数を設定する方法については混乱しています。

選択した写真として変数を設定するコードをどこに配置しますか?

ありがとう:)

5
Kinoscorpia

あなたはこのようにそれを行うことができます。

@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
    super.onActivityResult(requestCode, resultCode, data);

    // Here we need to check if the activity that was triggers was the Image Gallery.
    // If it is the requestCode will match the LOAD_IMAGE_RESULTS value.
    // If the resultCode is RESULT_OK and there is some data we know that an image was picked.
    if (requestCode == LOAD_IMAGE_RESULTS && resultCode == RESULT_OK && data != null) {
        // Let's read picked image data - its URI
        Uri pickedImage = data.getData();
        // Let's read picked image path using content resolver
        String[] filePath = { MediaStore.Images.Media.DATA };
        Cursor cursor = getContentResolver().query(pickedImage, filePath, null, null, null);
        cursor.moveToFirst();
        String imagePath = cursor.getString(cursor.getColumnIndex(filePath[0]));

        BitmapFactory.Options options = new BitmapFactory.Options();
        options.inPreferredConfig = Bitmap.Config.ARGB_8888;
        Bitmap bitmap = BitmapFactory.decodeFile(imagePath, options);

         // Do something with the bitmap


        // At the end remember to close the cursor or you will end with the RuntimeException!
        cursor.close();
    }
}
11
Bojan Kseneman

まず、ファイルで選択した画像のURIを取得するには、onActivityResultをオーバーライドする必要があります

_@Override
protected void onActivityResult(int requestCode, int resultCode, Intent intent) {
    if (requestCode == SELECT_PHOTO) {

        if (resultCode == RESULT_OK) {
            if (intent != null) {
                // Get the URI of the selected file
                final Uri uri = intent.getData();
                useImage(uri);                   
              }
        }
       super.onActivityResult(requestCode, resultCode, intent);

    }
}
_

次に、画像を使用するようにuseImage(Uri)を定義します

_void useImage(Uri uri)
{
 Bitmap bitmap = MediaStore.Images.Media.getBitmap(this.getContentResolver(), uri);
 //use the bitmap as you like
 imageView.setImageBitmap(bitmap);
}
_
14

Akash KurianJoseの回答の代替

_Bitmap bitmap = MediaStore.Images.Media.getBitmap(this.getContentResolver(), uri);
_

私はいつも使っています

_fun getBitmap(file: Uri, cr: ContentResolver): Bitmap?{
            var bitmap: Bitmap ?= null
            try {
                val inputStream = cr.openInputStream(file)
                bitmap = BitmapFactory.decodeStream(inputStream)
                // close stream
                try {
                    inputStream.close()
                } catch (e: IOException) {
                    e.printStackTrace()
                }

            }catch (e: FileNotFoundException){}
            return bitmap
        }
_

ギャラリーの写真とカメラの写真の両方で機能します。

それに関するより大きな問題: ピカソはギャラリーからの画像を表示できません

この方法を使用してギャラリーを開きます。

_private void openGallery(){
    if (Build.VERSION.SDK_INT <19){
        Intent intent = new Intent(); 
        intent.setType("image/*");
        intent.setAction(Intent.ACTION_GET_CONTENT);
        startActivityForResult(Intent.createChooser(intent, getResources().getString(R.string.select_picture)),GALLERY_INTENT_CALLED);
    } else {
        Intent intent = new Intent(Intent.ACTION_OPEN_DOCUMENT);
        intent.addCategory(Intent.CATEGORY_OPENABLE);
        intent.setType("image/*");
        startActivityForResult(intent, GALLERY_KitKat_INTENT_CALLED);
    }
}
_

次に、変換URIビットマップ前述の_ContentResolver.openInputStream_を使用するか、イメージを設定しますImageView.setImageUri(Uri)

2
murt

選択した画像を特定のImageViewに表示する場合。 RC_PHOTO_PICKER = 1であるとすると、これらのコード行は魔法を実行するはずです。

private void openPhotoPicker() {
    Intent photoPickerIntent = new Intent(Intent.ACTION_GET_CONTENT);
    photoPickerIntent.setType("image/*");
    photoPickerIntent.putExtra(Intent.EXTRA_LOCAL_ONLY, false);
    startActivityForResult(Intent.createChooser(photoPickerIntent,"Complete Action Using"), RC_PHOTO_PICKER);
}

@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
    super.onActivityResult(requestCode, resultCode, data);

    if (requestCode == RC_PHOTO_PICKER && resultCode == RESULT_OK && data != null) {
        Uri pickedImage = data.getData();
        //set the selected image to ImageView
        mImageView.setImageURI(pickedImage);
    }
}

その後、openPhotoPicker()メソッドを呼び出すだけです。

1
Lee Royld