Android, DrawerLayout + Fragments + CollapsingToolbarLayout

前端 未结 3 1222
一生所求
一生所求 2020-12-29 12:23

Is it possible to have a CoordinatorLayout / CollapsingToolbarLayout in the fragments shown in the main container of a DrawerLayout?

An answer to another question su

3条回答
  •  遥遥无期
    2020-12-29 13:03

    As a matter of fact, yes you can. I was looking for the same thing and the link from your question lead me to this from Google Blogpost

    Anyhow, below are my layout files, as for java code I did not change anything and Fragment calling remains the same.

    activity_main.xml (Main file)

    
    
    
    
        
    
        
    
    
    

    app_bar_main.xml (NavigationBar layout)

    
    
    
        
    
            
    
                
            
        
    
        
    
        
    
    
    

    content_main.xml

    
    
    
        
    
    

    And now you have "DrawerLayout + Fragments + CollapsingToolbarLayout"

提交回复
热议问题