Android Api 23 Change Navigation View headerLayout textview

后端 未结 7 1956
无人及你
无人及你 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 04:45

    View headerView=navigationView.getChildAt(0);
    TextView tvName=(TextView)hView.findViewById(R.id.name);
    TextView tvEmail=(TextView)hView.findViewById(R.id.email);
    
        tvName.setText(data);
        tvEmail.setText(data);
    

提交回复
热议问题