How to scroll to top of long ScrollView layout?

前端 未结 15 865
轻奢々
轻奢々 2020-11-30 18:34

For part of my app, the user is presented with a list of names and is asked to group them as they see fit.

(Note, the ListView code was copied verbatim from the And

15条回答
  •  日久生厌
    2020-11-30 18:52

    Very easy

        ScrollView scroll = (ScrollView) findViewById(R.id.addresses_scroll);
        scroll.setFocusableInTouchMode(true);
        scroll.setDescendantFocusability(ViewGroup.FOCUS_BEFORE_DESCENDANTS);
    

提交回复
热议问题