Rotated ImageViews overlaps each other

44 Views Asked by At

I want to add an rotated ImageViews to an VBox. My probelm is that the ImageViews overlaps each other and i have no idea how to solve this. Can anyone help me? That would be cool! Thanks!

My Code for the Rotation:

private ImageView normalizeOrientation(int orientation, ImageView iv){
        switch (orientation){
            case 2:
                iv.setRotationAxis(Rotate.Y_AXIS);
                iv.setRotate(180);
                break;
            case 3:
                iv.setRotate(180);
                break;
            case 4:
                iv.setRotate(180);
                iv.setRotationAxis(Rotate.Y_AXIS);
                iv.setRotate(180);
            case 5:
                iv.setRotate(90);
                iv.setRotationAxis(Rotate.Y_AXIS);
                iv.setRotate(180);
                break;
            case 6:
                iv.setRotate(90);
                break;
            case 7:
                iv.setRotate(270);
                iv.setRotationAxis(Rotate.Y_AXIS);
                iv.setRotate(180);
                break;
            case 8:
                iv.setRotate(270);
                break;
            default:
                break;
        }
        return iv;
    }

After adding rotated images to a VBox this happens:

Overlapping Images in a VBox

0

There are 0 best solutions below