Select image from gallery and show in imageview

后端 未结 3 738
一个人的身影
一个人的身影 2020-12-12 06:48

I need Open my gallery in mobile phone and select one picture which opened in imageview on activity.. nothing hard.. but I have code and thise code in simulator (genymotion)

3条回答
  •  暖寄归人
    2020-12-12 06:49

    Did you try this?

    public void onActivityResult( ....) {
          If ( resultCode == RESULT_OK) {
                 Uri selectedImg = data.getData();
                 Bitmap bitmap = MediaStore.Images.Media.getBitmap(getContentResolver, selectedImg);
                 If(bitmap != null) {
                    yourImageView.setImageBitmap(bitmap);
                 }
           }
    }
    

提交回复
热议问题