I had to install build 2013.2100 to get around a problem with the debug flag when uploading my app to the Google store. However, when I did, all of my secondary screens shifted most of the display objects. In the attached file, Setup_Wrong.png, the green area in the upper left hand corner should be a background for the entire screen and was in build 2013.1137. It also works fine on IOS. I have a main entry screen that displays fine, but when I choose an option, the new screen is as shown. Here is the code snippet that should display the image.
local group = self.view
– Get the current setup
setupData = facc.getSetupTable()
– Display the background
local background = display.newImage( “GreenBkgd.png”, 0, 0, true)
group:insert(background, true)
Note that the buttons display correctly, but the text fields and text field headers are also pushed to the left.
Have I missed a change between releases?