Android ScrollView automatically scrolls to the bottom of the view

前端 未结 6 1593
半阙折子戏
半阙折子戏 2021-02-06 23:27

I have created one activity which is containing one map, image and another text view, and I have added \"scrollview\" tag for it. But after the activity starts it scrolls to the

6条回答
  •  无人及你
    2021-02-07 00:08

    In case you do want to set this manually using Java; Try this- it really works: Use FOCUS_UP to scroll to the top and FOCUS_DOWN to scroll it to the Bottom.

    scrollView.post(new Runnable() {
                            public void run() {
                                scrollView.fullScroll(View.FOCUS_UP);
                            }
    

提交回复
热议问题