Hello,
is there another way to specify the time/duration
Yes, you could customize a ScrollView, and override the Fling method, if it is a HorizontalScrollView, the parameter is velocityX
. Refer to the following code:
public class MyScrollView : ScrollView
{
......
public override void Fling(int velocityY)
{
base.Fling(velocityY / 5);// one-fifth the speed, you can set other values
}
}
Best Regards,
Wenyan Zhang
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.