본문 바로가기

오류일지

[프로젝트1][오류일지]19. 헤더에 프로필 정보 불러오는 방법

문제점: HomeFragment에 프로필 정보를 불러온 것과 같이 HomeActivity안에 있는 navigationView안에 있는 Header에 프로필 정보를 불러오고 싶었는데, HomeFragment에서 했던 방법과 동일하게 했을 때 오류 발생.

 

 

결론: getHeaderView(0)을 쓰자!

tvName_header = navigationView.getHeaderView(0).findViewById(R.id.tvName_header);
tvEmail_header = navigationView.getHeaderView(0).findViewById(R.id.tvEmail_header);
ivProfile_header = navigationView.getHeaderView(0).findViewById(R.id.ivProfile_header);

정상적으로 작동하는 모습

 

참고자료

https://stackoverflow.com/questions/42243341/navigation-drawer-header-how-to-put-name-and-profile-pic-image-from-google-sign#

 

Navigation Drawer Header how to put name and profile pic image from Google Sign in

I was able to make a navigation drawer and google sign in app using firebase tutorials from youtube https://www.youtube.com/playlist?list=PLGCjwl1RrtcR1j6EmpBxJyJYowK2QIsdT I have activity_navigat...

stackoverflow.com