Font size of ListView and TabHost

drmover

Member
Licensed User
Longtime User
Hello,

Is there a way to control the font size of a ListView and TabHost?

Thank you,
Elad.
 

Merlot2309

Active Member
Licensed User
Longtime User
Hello Elad,

Example ListView and don´t forget to initialize it in the code

B4X:
   lvNames.SingleLineLayout.Label.TextSize = 18dip
   lvNames.FastScrollEnabled = True
   lvNames.SingleLineLayout.ItemHeight = 45dip
   lvNames.SingleLineLayout.Label.TextColor = Colors.White

Helen.
 
Upvote 0

devjet

Member
Licensed User
Longtime User
Helen, I have used above code but it only re sizes when scrolling not when static. How is this done for static view?
 
Upvote 0
Top