Is there a way to change the font size of the text
in a listview while the app is running, using a button
with the word "FONT +" - I can't seem to get it to change
real time, is there a update or refresh i need to do to see
the font size become bigger, thanks
in a listview while the app is running, using a button
with the word "FONT +" - I can't seem to get it to change
real time, is there a update or refresh i need to do to see
the font size become bigger, thanks
B4X:
Dim Label1 As Label
Label1 = ListView1.TwoLinesLayout.SecondLabel
Label1.TextSize = 20
Label1.TextColor = Colors.Green
B4X:
Sub ButtonBiggerFontSize_Click
Label1.textsize = Label1.TextSize + 3
End Sub