ScrollView inside ViewPager, scrolls to middle automatically

前端 未结 6 776
滥情空心
滥情空心 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:59

    I tried solution:

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

    And i dont know why but I cant do this with my RelativeLayout which is parent view (this does not work).

    I had to wrap my TextView inside FrameLayout and now everything is ok. Maybe this helps somebody.

      
    
            
        
    

提交回复
热议问题