I am porting my project from B4A to B4I.
In B4A I use:
The issue is that I cannot find in B4I any property of ListView similar to .Label.TextSize and .Label.TextColor.
How can i do ?
Thank you
In B4A I use:
B4X:
ListView1.SingleLineLayout.Label.TextSize=convertFromDp(20)
ListView1.SingleLineLayout.Label.TextColor=Colors.Black
Sub convertFromDp(input As Int) '<<- Found here on B4A forum
Dim scale As Float
scale = GetDeviceLayoutValues.scale
Return ((input - 0.5) / scale)
End Sub
The issue is that I cannot find in B4I any property of ListView similar to .Label.TextSize and .Label.TextColor.
How can i do ?
Thank you