quick 3.2 android 返回鍵功能

你的財神爺發表於2017-10-09
function LoadScene:bindReturnKeypad_()
    if "android" ~= device.platform then
        return
    end


    self:setKeypadEnabled(true)
    self:addNodeEventListener(cc.KEYPAD_EVENT, function (event)
        if event.key == "back" then
            local function onButtonClicked(isOK)
                if isOK then
                    app:exit()
                end
            end
            app:confirm("您確定要完全退出遊戲嗎?", onButtonClicked)
        end
    end)
end

相關文章