gpt4 book ai didi

lua - Corona SDK 中的水平 ScrollView

转载 作者:行者123 更新时间:2023-12-04 14:05:39 25 4
gpt4 key购买 nike

我在 corona sdk 中创建了一个 ScrollView ,但我遇到了一些问题,我只需要它来水平滚动。有帮助吗?

local widget = require("widget")

local rect1 = display.newRect(20,100,150,100)
local rect2 = display.newRect(200,100,150,100)
local rect3 = display.newRect(380,100,150,100)
local rect4 = display.newRect(580,100,150,100)
local rect5 = display.newRect(780,100,150,100)

local scrollView = widget.newScrollView{ left = 0, width = 0, height = 200, }

scrollView:insert(rect1);
scrollView:insert(rect2);
scrollView:insert(rect3);
scrollView:insert(rect4);
scrollView:insert(rect5);

最佳答案

根据 Corona SDK API ,您可以执行以下操作:

scrollView.verticalScrollDisabled = true

关于lua - Corona SDK 中的水平 ScrollView ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19825066/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com