第二次从图库中选择图像不起作用并显示黑屏

时间:2016-06-25 10:58:45

标签: android performance gallery image-gallery photo-gallery

1)从图库中选择图像,图像视图将随图片更新;

2)对于第一次尝试,它确实有效,我拍摄的照片显示正确。

3)我再次启动画廊并选择图片,应用程序进入空白屏幕,没有任何反应。

我一直在记录我的跟踪,第二次,尽管已经调用了startActivityForResult(),但是甚至没有调用onActivityResult。

以下是相关代码的一些片段:

private ImageView groupImage;
private Uri selectedImage;
groupImage = (ImageView) rootView.findViewById(R.id.groupLogo);
groupImage.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            Intent intent = new Intent(Intent.ACTION_PICK, MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
            startActivityForResult(intent, RESULT_LOAD_IMG);
        }
    });

public void onActivityResult(int requestCode, int resultCode, Intent data) {
    super.onActivityResult(requestCode, resultCode, data);
try{
    if(requestCode == RESULT_LOAD_IMG && resultCode == Activity.RESULT_OK && data!=null){
         selectedImage = data.getData();

        groupImage.setImageBitmap(MediaStore.Images.Media.getBitmap(getActivity().getContentResolver(), selectedImage));

    }
}catch (Exception e){
    e.getStackTrace();
}
}

1 个答案:

答案 0 :(得分:1)

此行会导致问题:

groupImage = (ImageView) rootView.findViewById(R.id.groupLogo);

onActivityResult功能中,您覆盖之前对groupImage的引用,因此onClickListener未分配给ImageView