Android Question listview- scroll to bottom

merlin2049er

Well-Known Member
Licensed User
Longtime User
Hi, I'm writing a little scoring app. I'm using listview to keep score.
How do I keep my score visible without scrolling? Won't it automatically scroll while adding text to it?

Or is there a better control - I'd also prefer to change the text size.

Thanks,
Joe
 

mangojack

Expert
Licensed User
Longtime User
To automatically scoll to last entry use ..
B4X:
 ListView1.SetSelection(ListView1.Size)


To change line heights / fonts sizes ect ..
B4X:
ListView1.SingleLineLayout.ItemHeight = 32
ListView1.SingleLineLayout.Label.Height = 24
ListView1.SingleLineLayout.Label.TextSize = 21
ListView1.SingleLineLayout.Label.TextColor = Colors.Blue
ListView1.SingleLineLayout.Label.Gravity = Gravity.CENTER_VERTICAL

Maybe have a read here ...
ListView Tutorial

Cheers mj
 
Last edited:
Upvote 0
Top