shirlun Active Member Licensed User Longtime User Aug 25, 2016 #1 When calling ScrollTo, how to force the ScrollView shows indicator ?
Erel B4X founder Staff member Licensed User Longtime User Aug 25, 2016 #2 You can use this sub to momentarily show the the indicators: B4X: Sub FlashIndicators(sv As ScrollView) Dim no As NativeObject = sv no.RunMethod("flashScrollIndicators", Null) End Sub It looks better if you scroll the ScrollView without animation. Upvote 0
You can use this sub to momentarily show the the indicators: B4X: Sub FlashIndicators(sv As ScrollView) Dim no As NativeObject = sv no.RunMethod("flashScrollIndicators", Null) End Sub It looks better if you scroll the ScrollView without animation.
shirlun Active Member Licensed User Longtime User Aug 25, 2016 #3 Thank you. I use the empty ScrollView as a scroll indicator. Upvote 0