I try to edit a text of another layout in android. I already inflted the textview but the text don't move ...
View rowLink = getLayoutInflater().inflate(R.layout.nav_header_acceuil, null);
TextView nameText = (TextView) rowLink.findViewById(R.id.nameText);
TextView mailText = (TextView) rowLink.findViewById(R.id.mail);
nameText.setText("test");
no changes on the text ...