I'm using the NativeActivity for Android, and when my window creates I call:
ANativeWindow_setBuffersGeometry(g_AndroidEngine.app->window, 0, 0, format);
When I check the size of the window that gets created, it is created under the status bar. So if I output the touch coordinates at the upper left corner, it starts at status_bar_height. Is there a simple reason why this may have happened? Do I need a manifest line somewhere? I'm working on a Nexus 7 tablet, and any input is appreciated.
EDIT:
Reading this in the morning shows that I wasn't very clear. My application isn't relative to the status bar. It seems to exist under the status bar. So when I touch at a location that should be my application's upper left, I get (0, status_bar_height) instead of (0,0) which is what I would expect.