How to make HorizontalScrollView RIGHT to LEFT Scroll android

后端 未结 3 1021
隐瞒了意图╮
隐瞒了意图╮ 2021-02-20 06:34

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

How to do this? Any help will be appreciated.

3条回答
  •  耶瑟儿~
    2021-02-20 07:23

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

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

    Related Q and A is https://stackoverflow.com/a/4720563/2511775

提交回复
热议问题