Scrollview not scrolling down completely

后端 未结 3 862
青春惊慌失措
青春惊慌失措 2021-01-04 08:42

I\'m building a chat-like application that displays text the user inputs to the screen using a scrollview. What I\'m doing is auto-scrolling the scrollview down as more text

3条回答
  •  死守一世寂寞
    2021-01-04 09:19

    I looked around, and found that some other people have run into the same problem.

    I solved this problem using this piece of code:

    final ScrollView scrollView = (ScrollView) findViewById(R.id.scroll_view);
    scrollView.post(new Runnable() {
        public void run() {
            scrollView.fullScroll(View.FOCUS_DOWN);
        }
    });
    

    Hopefully this can help somebody out there!

提交回复
热议问题