Pass scroll event to another view

前端 未结 2 1772
终归单人心
终归单人心 2020-12-30 08:47

I have been using android design support library for collapsing toolbar layout. Everything works fine except that I want to scroll the whole view on scrolling content in col

2条回答
  •  情书的邮戳
    2020-12-30 09:07

    Your pager content needs to have nested scrolling enabled. The easiest way to accomplish this is to just wrap it in a NestedScrollView:

    fragment_image.xml

    
        
    
    

    However this causes the parent height of the ImageView to be indeterminate, so you have to set it to some fixed height.

提交回复
热议问题