如何使Horizo​​ntalScrollView从右到左滚动机器人机器人、Horizo、ntalScrollView、右到左

2023-09-12 22:19:26 作者:男兽出没

在默认情况下 Horizo​​ntalScrollView 由左到右,但我想从从右向左滚动卷轴。

By default HorizontalScrollView scrolls from Left to Right but I want to scroll from Right to Left.

如何做到这一点?任何帮助将AP preciated。

How to do this? Any help will be appreciated.

推荐答案

您可以用这样的滚动到你的滚动视图的右边缘在code:

You can scroll it to the right edge of your scroll view in your code with something like this:

postDelayed(new Runnable() {
    public void run() {
        scrollView.fullScroll(HorizontalScrollView.FOCUS_RIGHT);
    }
}, 100L);

相关问题与解答是 http://stackoverflow.com/a/4720563/2511775