Android Api 23 Change Navigation View headerLayout textview

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

    I had the same issue and was able to avoid it with this code:

        View header = LayoutInflater.from(this).inflate(R.layout.nav_header_main, null);
        navigationView.addHeaderView(header);
        TextView text = (TextView) header.findViewById(R.id.textView);
        text.setText("HELLO");
    

提交回复
热议问题