使用 ImageView 显示图库

Display image gallery with ImageView

我想这样做:按下按钮打开图库,选择一张图片,它出现在程序 ImageView 中。图片选择所有作品只显示什么,只是一个空白区域。

//upload photo
        uploadPhoto.setOnClickListener(new OnClickListener() {

            @Override
            public void onClick(View v) {
                Intent photoPickerIntent = new Intent(Intent.ACTION_PICK);
                photoPickerIntent.setType("image/*");
                final int SELECT_PHOTO = 1234;
                startActivityForResult(photoPickerIntent, SELECT_PHOTO);
            }
        });

@Override
    protected void onActivityResult(int requestCode, int resultCode, Intent imageReturnedIntent) { 
         super.onActivityResult(requestCode, resultCode, imageReturnedIntent); 
            switch(requestCode) { 
                case 1234:
                    if(resultCode == RESULT_OK){

                        Uri selectedImage = imageReturnedIntent.getData();
                        ImageView photoRegistration = (ImageView) findViewById(R.id.testSet);
                        photoRegistration.setImageURI(selectedImage);

                    }
            }
    }

xml

<ImageView
                    android:id="@+id/testSet"
                    android:layout_width="50dp"
                    android:layout_height="wrap_content"
                    android:src="@drawable/common_signin_btn_icon_pressed_light" />

尝试:

位图bitmap_photo = MediaStore.Images.Media.getBitmap(getContentResolver(), imageUri);