Android Api 23 Change Navigation View headerLayout textview

后端 未结 7 1915
无人及你
无人及你 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:10

    this solved the problem for me

        View headerView = navigationView.inflateHeaderView(R.layout.header_view);
    
        txt_fullname = (TextView) headerView.findViewById(R.id.txt_fullname);
        txt_email = (TextView) headerView.findViewById(R.id.txt_email);
    
    0 讨论(0)
提交回复
热议问题