如何在Android Studio中更改导航抽屉图标颜色?

时间:2016-01-29 13:40:45

标签: android

我没有得到答案。因为当我在一个活动上为工具栏提供透明颜色时,我无法看到导航抽屉图标。 请帮帮我。

1 个答案:

答案 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);
        }