Collapsing Toolbar Like Google Play Store

前端 未结 1 907
小蘑菇
小蘑菇 2021-02-14 05:26

I want to implement a collapsing toolbar like google Play Store. I have achieved functionality somewhat but that is only working for portrait Screen. Here is a sample of screens

1条回答
  •  情书的邮戳
    2021-02-14 05:45

    In this pretty similar issue: collapsing toolbar layout like google play store, you would find an answer as below:

    View inside CollapsingToolbarLayout no need to set app:layout_scrollFlags. No effect. Base on my code, change app:layout_scrollFlags in CollapsingToolbarLayout to app:layout_scrollFlags="scroll|enterAlways|enterAlwaysCollapsed" and set minHeight for it.

    As your toolbar is "pin", so enterAlwaysCollapsed will call it when you scroll down.

    
    
    
    
        
    
            
    
            
    
        
    
    
    
    
    
    

    In the comment to that post, you would find also a hint:

    add app:contentScrim="?attr/colorPrimary" to your collapsingtoolbarlayout. It is no need two toolbars to implement this effect

    EDIT: Here you would find an interview with a guy responsible for Google Play Store, he's talking about how he build design in Play Store App:

    [UDACITY] Interview with Kirill Grouchnikov, part 1

    [UDACITY] Interview with Kirill Grouchnikov, part 2

    Hope it help

    0 讨论(0)
提交回复
热议问题