How to add title in Navigation drawer layout?

后端 未结 3 1608
清酒与你
清酒与你 2020-12-23 10:20

[UPDATE]

I solve the problem by adding addHeaderView :

protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
          


        
3条回答
  •  情书的邮戳
    2020-12-23 11:02

    Maybe it's a bit late but I think I have a simpler solution. In your Activity's layout, instead of adding a listView inside the DrawerLayout, you can add for example a LinearLayout, and you can easily add separators and rows. For example:

    
    
        
    
            
    
            
    
        
    
    
    
    
    
        
    
        

    And in the Activity, you can add the listeners to the buttons.

    Hope that helps!

提交回复
热议问题