Android Api 23 Change Navigation View headerLayout textview

后端 未结 7 1961
无人及你
无人及你 2020-12-01 04:11

I am testing the Navigation Drawer sample project in android and i have a problem setting the text in navigation view profile header.

This is my code:

MainAc

7条回答
  •  囚心锁ツ
    2020-12-01 05:06

    Or if you use this attribute:

    
        ...
        app:headerLayout="@layout/your_header_layout"/>
    

    You can:

    View header = mNavigationView.getHeaderView(0);
    TextView title = (TextView) header.findViewById(R.id.your_title_id);
    //Or something else
    

提交回复
热议问题