I’m developing a portrait-only app and I want to support tall devices as well as display the status bar. My issue is with positioning an element directly under the status bar.
local heading = display.newImageRect(group, "assets/img/heading.png", 320, 62);
heading.x, heading.y = display.contentWidth\*0.5, (31 + display.screenOriginY) + display.statusBarHeight;
This snippet works as-expected on iOS, but when I build and test it on my Samsung Galaxy S3 there’s a black bar roughly double the size of the status bar in between the bar and my image. Is this a known issue? any workaround? [import]uid: 194435 topic_id: 35226 reply_id: 335226[/import]