想在账号的位置 设置登录的用户名 如何设置 我这么写的 log显示我设置的用户名,但是手机上显示的还是默认的账号
View view = LayoutInflater.from(MainActivity.this).inflate(R.layout.nav_header_main, null, false);
username = (TextView) view.findViewById(R.id.username);
username.setText("NIHAO");
username.setTextColor(Color.BLUE);
Log.e("username", username.getText().toString());