What I want is to invest a Layout (that looks around) , so they have an idea is something like this:
Try rotating the parent Layout that contains everything in your view by XML
android:rotationX
android:rotationY
You could try to play a bit with the values to adjust it to your convenience, for example you could invert the layout in X:
android:rotationX="-180"
If you want to do it from java code there are also methods to modify it
view.setRotationY(float)
view.setRotationX(float)