I made a small project that shows the problem.
The problem as stated in the Bug Submission:
"If you have an app where the status bar is hidden with the following line:
display.setStatusBar( display.HiddenStatusBar ) and then execute the following line:
native.showPopup(“sms”, options) the status bar appears and does go away even after sending the
message or canceling the message.
The above scenario does not happen with the native.showPopup(“mail”, options)"
I had submitted a bug submission a week ago and never heard back. I resubmitted a report with the sample code below:
display.setStatusBar(display.HiddenStatusBar);
--\*\*BACKGROUND\*\*
--local bkg = display.newImageRect("blackbackground.png", 768, 800) --1024)
-- for non ads local bkg = display.newImageRect("blackbackground.png", 768,1024)
--bkg:setReferencePoint(display.TopLeftReferencePoint)
--bkg.x = (display.contentWidth/2) - (bkg.width/2)
--bkg.y = (display.contentHeight/2) - (bkg.height/2)
------------------------------------------------
local buttonmessage = display.newImage( "hello.png" )
buttonmessage.x = 100
buttonmessage.y = 400
function buttonmessage:tap(event)
display.setStatusBar(display.DefaultStatusBar)
local options2 =
{
to ="5551212222",
}
native.showPopup("sms", options2)
end
How long does a bug Submission take to hear about?
Steps to reproduce the problem:
-
Hide the Status Bar with :display.setStatusBar( display.HiddenStatusBar )
-
Tap a button with the following line native.showPopup(“sms”, options)
-
Statusbar reappears and stays
[import]uid: 22152 topic_id: 21880 reply_id: 88886[/import]