SV not showing last line of table

fdx12345

Active Member
Licensed User
Longtime User
I am using a Table from the Table class which is working fine except when I end up with enough entries to required the services of the SV, the SV will allow me to scroll all the way down to the next to the last entry. I cannot see the last entry.

What do I need to add or change to fix this?
 

klaus

Expert
Licensed User
Longtime User
You have devices with different height / width ratios.
If you set the Top propety to 220dip and the Height to 210dip you get a bottom of 430 which fills a whole 480 x 320 scale 1 screen.
On a screen with 800/480 = 1.67 it wont fill the whole height.
With Height = 100%y - 220dip it will fill the whole screen, it's the same as Activity.Height - ScrollView.Top.

Best regards.
 
Upvote 0
Top