Android Question SOLVED: Scrollview FullScroll is not working?

udg

Expert
Licensed User
Longtime User
Hi all,

how is supposed to work the FullScroll function?
I have a sv filled with more panels than the visible space and they scroll as expected when swiping.
Now, I'd like to firstly make visible the sv showing its first (or last) "n" panels in the list and then swipe to scroll the whole list.
Neither using FullScroll(True) nor FullScroll(False) helps me, so the subject question.

I'm running B4A v. 3.20, if this helps with any known bug/problem.

TIA,

Umberto
 

udg

Expert
Licensed User
Longtime User
Solved!
For those interested, have a look a this post by Klaus.
In my case I simply called it this way:
B4X:
  VPanel.Visible=True
  VPanel.BringToFront
  DoEvents
  VPanel.FullScroll(True) 'this one shows later entries in the panel list managed through the scrollview

Umberto
 
Upvote 0
Top