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