728x90
RecyclerView: No layout manager attached; skipping layout
라는 로그를 출력하고 있다.
무엇이 문제일까?
calendarView = this.findViewById(R.id.calendar);
바로 밑에다가
calendarView.setHasFixedSize(true);
calendarView.setLayoutManager(new GridLayoutManager(mContext,7));
두줄을 추가해주면 해결된다.
728x90
'안드로이드 > 버그탈출' 카테고리의 다른 글
API28(Android 9) 사용 고려사항 (0) | 2020.01.26 |
---|---|
인코딩 문제인가?? (0) | 2019.12.05 |
Manifest merger failed with multiple errors, see logs (0) | 2019.10.20 |
java.lang.ArrayIndexOutOfBoundsException 해결법 (0) | 2019.10.08 |
안드로이드 버전 정보 비교 로직 에러 (0) | 2019.09.25 |