我正在使用Corona SDK,我需要使用ScrollView来显示我从SQLite数据库中提取的一些信息。我想知道是否需要使用组中显示的数据才能使用滚动视图。如果我这样做,你能提供一些我可以用来将数据插入ScrollView的示例代码吗?
答案 0 :(得分:0)
如果要从数据库中获取图像名称,路径等数据,则只需将它们添加到滚动视图即可。否则,取决于。我给你的代码是在corona SDK中创建一个简单的滚动视图:
-- Require 'widget'
local widget = require( "widget" )
--Creating scroll view
local scrollView = widget.newScrollView
{
top = 100,
left = 0,
width = 320,
height = 470,
scrollWidth = 320,
scrollHeight = 800,
horizontalScrollDisabled = true,
backgroundColor = {255,255,255,200} -- r,g,b, alpha
}
-- Let the following be the image path from DB
local filePathFrom_DB = "assets/image_1.png"
-- Create a image using the fetched path
local background = display.newImageRect( filePathFrom_DB, 100, 100 )
background.x = 160
--Insert the image object into the scroll view
scrollView:insert( background )
有关详细信息,请访问:Corona API - widget.newScrollView()
保持编码................. :)。