不能从画廊挑选图片。结果代码始终取消

问题描述 投票:0回答:2

我的Fragment的完整代码:

    public class ProfileEditPictureFragment extends BaseFragment implements OnClickListener {
    private ImageView imageView = null;
    private Button buttonPick = null;
    private Button buttonSave = null;
    private Button buttonCancel = null;
    private File tempFile = null;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        this.setRetainInstance(true);

        this.sessionProfilePreferences = new SessionProfilePreferences(this.getActivity());
        this.sessionLoginPreferences = new SessionLoginPreferences(this.getActivity());
        this.sessionLoginSingleton = SessionLoginSingleton.getInstance(this.getActivity());

        String state = Environment.getExternalStorageState();

        if (Environment.MEDIA_MOUNTED.equals(state)) {
            this.tempFile = new File(Environment.getExternalStorageDirectory(), "temp_photo.jpg");
        }
        else {
            this.tempFile = new File(this.getActivity().getFilesDir(), "temp_photo.jpg");
        }
    }

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        return inflater.inflate(R.layout.fragment_profile_picture_edit, container, false);
    }

    @Override
    public void onViewCreated(View view, Bundle savedInstanceState) {
        super.onViewCreated(view, savedInstanceState);

        this.imageView = (ImageView) view.findViewById(R.id.profile_picture_edit_imageview_photo);
        this.buttonPick = (Button) view.findViewById(R.id.profile_picture_edit_button_pick);
        this.buttonPick.setOnClickListener(this);
        this.buttonSave = (Button) view.findViewById(R.id.profile_picture_edit_button_save);
        this.buttonSave.setOnClickListener(this);
        this.buttonCancel = (Button) view.findViewById(R.id.profile_picture_edit_button_cancel);
        this.buttonCancel.setOnClickListener(this);
    }

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

        Log.v("ProfileEditPicture", "requestCode: " + requestCode);
        Log.v("ProfileEditPicture", "resultCode: " + resultCode);
        Log.v("ProfileEditPicture", "data: " + data);

        Bitmap bitmap = null;

        if(resultCode == Activity.RESULT_OK) {
            if (requestCode == Globals.REQUEST_PICK_PHOTO) {
                try {
                    InputStream inputStream = this.getActivity().getContentResolver().openInputStream(data.getData());
                    FileOutputStream fileOutputStream = new FileOutputStream(this.tempFile);

                    Helper.copyStream(inputStream, fileOutputStream);

                    fileOutputStream.close();
                    inputStream.close();

                    this.startCropImage();
                } catch (Exception e) {}
            } else if (requestCode == Globals.REQUEST_CROP_PHOTO) {
                String path = data.getStringExtra(CropActivity.IMAGE_PATH);

                if (path == null) {
                    return;
                }

                bitmap = BitmapFactory.decodeFile(this.tempFile.getPath());

                this.imageView.setImageBitmap(bitmap);
            }
        }
    }

    @Override
    public void onClick(View view) {
        switch(view.getId()) {
        case R.id.profile_picture_edit_button_pick : {
            this.pickPicture();
        } break;
        case R.id.profile_picture_edit_button_save : {

        } break;
        case R.id.profile_picture_edit_button_cancel : {
            this.getActivity().finish();
        }
        }
    }

    private void pickPicture() {
        Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
        intent.setType("image/*");

        this.startActivityForResult(Intent.createChooser(intent, "Select Picture"), Globals.REQUEST_PICK_PHOTO);
    }

    private void startCropImage() {
        Intent intent = new Intent(this.getActivity(), CropActivity.class);
        intent.putExtra(CropActivity.IMAGE_PATH, this.tempFile.getPath());
        intent.putExtra(CropActivity.SCALE, true);
        intent.putExtra(CropActivity.ASPECT_X, 3);
        intent.putExtra(CropActivity.ASPECT_Y, 2);

        this.startActivityForResult(intent, Globals.REQUEST_CROP_PHOTO);
    }
}

resultCode始终是0,数据总是null。权限是设置的。

那么如何从画廊中挑选图片呢?

我在Android 5.0.1的Nexus 4上测试它

android
2个回答
1
投票

像这样试试ACTION_PICK

Intent galleryIntent = new Intent(Intent.ACTION_PICK,
android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
startActivityForResult(galleryIntent, RESULT_LOAD_IMG);

并在活动结果

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

        if (requestCode == RESULT_LOAD_IMG && resultCode == RESULT_OK
                && null != data) {

            Uri selectedImage = data.getData();
            String[] filePathColumn = { MediaStore.Images.Media.DATA };


            Cursor cursor = getContentResolver().query(selectedImage,
                    filePathColumn, null, null, null);

            cursor.moveToFirst();

            int columnIndex = cursor.getColumnIndex(filePathColumn[0]);
            imgDecodableString = cursor.getString(columnIndex);
            cursor.close();
            ImageView imgView = (ImageView) findViewById(R.id.imgView);

            imgView.setImageBitmap(BitmapFactory
                    .decodeFile(imgDecodableString));

        } else {
            Toast.makeText(this, "You haven't picked Image",
                    Toast.LENGTH_LONG).show();
        }
    } catch (Exception e) {
        Toast.makeText(this, "Something went wrong", Toast.LENGTH_LONG)
                .show();
    }

}

0
投票

当我在该活动的清单中设置launchMode =“singleInstance”时,我在我的一个活动中遇到了同样的问题。删除该属性时,它工作正常。虽然我不知道这种行为的原因。

© www.soinside.com 2019 - 2024. All rights reserved.