Android Question B4XDrawer - sliding drawer - questions

DonManfred

Expert
Licensed User
Longtime User
like you would do it with a normal listview....

B4X:
Dim Label1 As Label
Label1 = ListView1.TwoLinesLayout.SecondLabel
Label1.TextSize = 20
Label1.TextColor = Colors.Green
 
Upvote 0

parijs

Active Member
Licensed User
Longtime User
Thank you Don

I now use:

ListView2.TwoLinesAndBitmap.Label.TextSize = 14
ListView2.TwoLinesAndBitmap.Label.TextColor = Colors.White

But only my first test line is white and the second almost unreadable
 
Upvote 0

udg

Expert
Licensed User
Longtime User
Hi @parijs ,

Manfred showed you what to address for to work with the second line. Eventually you missed that.
ListView1.TwoLinesAndBitmap.SecondLabel.whatever
It's that SecondLabel that makes the difference
 
Upvote 0
Top