You can insert labels in tableView and assign for each of them own tooltip message.
B4X:
For i = 0 To 20
Dim row(3) As Object
For j = 0 To 2
Dim lb As Label
lb.Initialize("")
lb.Text = "Cell number: " & j
lb.TooltipText = "I'm in row: " & i
row(j) = lb
Next
TableView1.Items.Add(row)
Next
You can insert labels in tableView and assign for each of them own tooltip message.
B4X:
For i = 0 To 20
Dim row(3) As Object
For j = 0 To 2
Dim lb As Label
lb.Initialize("")
lb.Text = "Cell number: " & j
lb.TooltipText = "I'm in row: " & i
row(j) = lb
Next
TableView1.Items.Add(row)
Next
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.