B4J Question Tableview Color and resize

invocker

Active Member
hello

1 - I need to change color of text in the 3rd row and the cell color of tableview
2- resize col of the tableview to adjust the same lenght of txt in row
3- set the page created in main form width the same as tableview
my code is

B4X:
'TblProc  is tableview
'proc is the page created
Do While Matcher1.Find
        Dim row(3) As Object
        row(0) = Matcher1.Group(1)
        row(1) = Matcher1.Group(2)
        row(2) = Matcher1.Group(3)
     ' dim lbl as label =row(2)
    ' lbl.textcolor = fx.colors.green
        proc.TblProc.Items.Add(row)
       
    Loop
 
Top