• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

cocos2d-lua3.7控件篇(四)-ScrollViewdemo

原作者: [db:作者] 来自: [db:来源] 收藏 邀请


效果如下:


local MenuScene = class("MenuScene", function()
    return display.newScene("MenuScene")
end)

function MenuScene:ctor()
    print("ctor")
local tests = {
        "Test_NodeFrameEvent",
        "Test_NodeEvent",
        "Test_KeypadEvent",
        "Test_NodeTouchEvent",
        "Test_AccelerometerEvent",
        "Test_CocosStudio",
        "Test_Audio",
    }

    local scrollView = ccui.ScrollView:create()
    scrollView:addTo(self)
    scrollView:align(display.TOP_CENTER, display.cx, display.top)
    self.scrollView = scrollView

    local total = 0
    local btnSize = nil
    for i = #tests, 1, -1 do
        local btn = ccui.Button:create()
        btn:setTitleText(tests[i])
        btn:setTitleFontSize(24)
        btn:addTouchEventListener(function(sender, eventType)
            if 2 == eventType then
                print(i)
                
            end
        end)
        if not btnSize then
            btnSize = btn:getContentSize()
        end
        btn:pos((display.width - btnSize.width) / 2 + btnSize.width / 2,
                btnSize.height * total + btnSize.height / 2)
        total = total + 1

        scrollView:addChild(btn)
    end

    local totalHeight = btnSize.height * total
    scrollView:setInnerContainerSize(cc.size(display.width, totalHeight))
    local scrollHeight = display.height
    if totalHeight < scrollHeight then
        scrollHeight = totalHeight
    end
    scrollView:setContentSize(cc.size(display.width, scrollHeight))

end

function MenuScene:onEnter()
end

function MenuScene:onExit()
end

return MenuScene



鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Redisson 分布式锁实现之前置篇 → Redis 的发布/订阅 与 Lua发布时间:2022-07-22
下一篇:
lua中的点、冒号与self发布时间:2022-07-22
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap