ScrollView inside ViewPager, scrolls to middle automatically

前端 未结 6 785
滥情空心
滥情空心 2021-02-01 18:06

I have a ViewPager that contains several instances of the same fragment, this fragment contains an article. The Article view hierarchy is quite simple, a Title, a Banner image,

6条回答
  •  攒了一身酷
    2021-02-01 18:57

    This is likely caused by android:textIsSelectable. You may try adding the following to the ScrollView:

    android:focusable="true"
    android:focusableInTouchMode="true"
    android:descendantFocusability="beforeDescendants"
    

提交回复
热议问题