Why does my android activity always start scrolled to the bottom?

前端 未结 11 923
萌比男神i
萌比男神i 2020-12-22 20:56

Whenever I start this activity, it always starts bottomed out--scrolled all the way to the bottom. I am not doing anything weird in the activity OnCreate (or anywhere for th

11条回答
  •  南笙
    南笙 (楼主)
    2020-12-22 21:17

    You can try this code:

    scroller.post(new Runnable() { 
        public void run() { 
            scroller.fullScroll(ScrollView.FOCUS_DOWN); 
        } 
    }); 
    

    [N:B] [referance link]1

提交回复
热议问题