in the sample of table view list
I can only have 1 row of text?
for example: In my table list I have 1 text in 1 row but I want to add another Text into this row
can be done?
myList = tableView.newList{
data = data,
default = "listItemBg\_white.png",
over = "listItemBg\_over.png",
onRelease = listButtonRelease,
top = topBoundary + 20,
bottom = 16,
callback = function( row )
local t = display.newText( row, 0, 0, native.systemFontBold, 17 )
t:setTextColor(0, 0, 0)
t.x = math.floor(t.width/2) + 12
t.y = 46
return t
end
}
this is the code for the list that I use from sample
I want to add another “t” with another text
can be done?
thanks [import]uid: 23063 topic_id: 16536 reply_id: 316536[/import]