我没有得到答案。因为当我在一个活动上为工具栏提供透明颜色时,我无法看到导航抽屉图标。 请帮帮我。
答案 0 :(得分:1)
在android studio中,试试吧:
View header = LayoutInflater.from(this).inflate(R.layout.nav_header_main, null);
navigationView.addHeaderView(header);
TextView userName = (TextView) header.findViewById(R.id.textView_menu_user_name);
ProfilePictureView profilePictureView = (ProfilePictureView) header.findViewById(R.id.profilePicture_menu_user);
Profile profile = Profile.getCurrentProfile();
if (profile != null) {
userName.setText(profile.getFirstName());
profilePictureView.setProfileId(profile.getId());
} else {
userName.setText(R.string.user_anonimouns);
}