I want to give a note when I press the home key,but the follow code can’t do anythong
–Handle the applicationExit event to close the db
local function onCloseApp()
end
local function onSystemEvent( event )
if( event.type == “applicationExit” ) then
native.showAlert( “note”, “app will exit”, { “ok” } )
end
end
–setup the system listener to catch applicationExit
Runtime:addEventListener( “system”, onSystemEvent ) [import]uid: 29364 topic_id: 12136 reply_id: 312136[/import]