Android Question ListView Gravity.RIGTH issue

GMan

Well-Known Member
Licensed User
Longtime User
I am using the following code to set the gravity of the ListView-entry to the rigth side (decimal numbers)
B4X:
ListView1.Padding = Array As Int (0dip, 0dip, 5dip, 0dip)
ListView1.AddSingleLine(Round2(LabelErgebnis.Text,2))

It works well, but the the ca. 1/2 of the rightest numbers is cut half - even if i use padding.
i.e. if the resuslt is 6.25 the rigth half of the 5 is not shown.

The list has width above that few dips, so its not a "space" problem inner the ListView
 
Top