将滚动设置为图像的末尾(更改默认值)

Set scroll to end of Image (change default value)

我在小的 Horizo​​ntalScrollView (800x800) 中添加了我的大 ImageView (6000 x 800)。 默认情况下,滑块位于左侧(图像的开头)。

如何在 ImageView 的末尾设置滚动条?我可以更改默认值吗?

HorizontalScrollView.FullScroll 不适合你?

HorizontalScrollView scrollView1 = new HorizontalScrollView(this);
var handler = new Handler();
handler.PostDelayed (() => scrollView1.FullScroll (FocusSearchDirection.Right), 100);