android에서navigationview의 컨트롤 id 가져오기

1332 단어
요 며칠 전 프로젝트를 재구성할 때 작은 버그가 발견되었는데 대체적으로 다음과 같이 설명한다.
    

제가 이 Navigation에서 머리 레이아웃을 Nav 라고 지목했습니다.header_main, 이 머리 레이아웃에 두 개의 TextView가 있습니다.MainActivity로 이동하면 이 코드를 초기화합니다.
TextView tvName = (TextView) findViewById(R.id.tvName);
TextView tvStuId = (TextView) findViewById(R.id.tvStuId);
tvName.setText("  :" + "12");
tvStuId.setText("  :" + "123");

실행할 때 매우 기이한 이상이 발생했습니다. tvName이라는 대상은 빈 대상입니다. 관련 자료를 찾은 후에 해결 방안을 찾았습니다. 상응하는 컨트롤의 상부 컨트롤을 가져와야 합니다. 위에서 아래로 단계별로 가져와야 합니다. 이런 방법대로findViewById를 직접 찾지 않으면 대응하는 컨트롤 id를 얻을 수 없기 때문에 해결 방안은 다음과 같습니다.
NavigationView navigationView = (NavigationView) findViewById(R.id.nav_view);
TextView tvName = navigationView.getHeaderView(0).findViewById(R.id.tvName);
TextView tvStuId = navigationView.getHeaderView(0).findViewById(R.id.tvStuId);
tvName.setText("  :" + "12");
tvStuId.setText("  :" + "123");

좋은 웹페이지 즐겨찾기