Android: How to scroll ScrollView in top

后端 未结 5 1437
小鲜肉
小鲜肉 2020-12-14 17:05

I have two buttons that switching to the next list of events and the previous one.

When I go to next\\previous event, scrolls remains somewhere below. But I need to

5条回答
  •  陌清茗
    陌清茗 (楼主)
    2020-12-14 17:51

    The timing of these calls is crucial. getViewTreeObserver().addOnGlobalLayoutListener didn't work for me but using the onWindowFocusChanged callback in my activity did:

    @Override
        public void onWindowFocusChanged(boolean hasFocus) {
            super.onWindowFocusChanged(hasFocus);
    
            if (hasFocus) {
                mScrollView.fullScroll(View.FOCUS_UP);
            }
        }
    

提交回复
热议问题