Corona SDK:来自sqlite的文本没有包装并显示在其他文本的顶部

时间:2013-11-14 18:52:10

标签: sqlite corona

我是Corona的新手,我遇到的问题是sqlite和文字没有包装并显示在其他文本的顶部。 sqlite表引入了3列,分别是名称,电话和评论。注释列可能很长并且正在包装。以下是我正在使用的代码。任何想法都会非常感激。

--setting the font size & text display size
local fSize = display.contentWidth * .03
local tTab = display.contentWidth * .05
local tWidth = display.contentWidth * .9
local 

tTop = display.contentHeight * .1


local count =0
local sql = "SELECT * from contacts"
for row i

n db:nrows(sql) do

if row.name == nil then
    print(" NO NAME FOUND!!! ")
end

count = count +1
local dbText = row.name.." - "..row.phone.." - "..row.comment
local t = display.newText(dbText, tTab, tTop + ((fSize * 1.25) + (fSize * 1.25 *        
count)), tWidth, 0, native.systemFont, fSize)
t:setTextColor(255,255,255)

end

1 个答案:

答案 0 :(得分:0)

试试这个......

local ypos= 50
for row in db:nrows(sql) do

if row.name == nil then
 print(" NO NAME FOUND!!! ")
end

count = count +1
local dbText = row.name.." - "..row.phone.." - "..row.comment
local t = display.newText(dbText, tTab, ypos, tWidth, 0, native.systemFont, fSize)
ypos=t.y+ypos+30
t:setTextColor(255,255,255)

end