setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);
I put the above statement in my Activity. But I was surprised to find out that x/y coordinates where y = 0 is actually represent the top of the screen and y = screen height actually represent the bottom of the screen. This is a bit counter-intutive because I throught y = 0 should means the bottom of the screen.
Is this the correct y axis representation in landscape mode, or I might have missed some important setup or coding?
