1. getItemSize==0 일 때
@Override
public int getItemCount() {
Log.e(TAG, "itemList.size(): "+itemList.size());
return itemList.size();
}
2. LayoutManger를 셋해주지 않았을 때
rvRegisterModules = mBinding.rvModuleBeforeRegisterDocList;
->
rvRegisterModules = mBinding.rvModuleBeforeRegisterDocList;
rvRegisterModules.setLayoutManager(new LinearLayoutManager(getContext()));
반응형
'Platform > Android' 카테고리의 다른 글
[APK] apk 만들기 (0) | 2020.06.23 |
---|---|
[RecyclerView] 항목/아이템 사이에 줄 (0) | 2020.06.22 |
[DialogFragment] width, height 지정하기 (0) | 2020.06.19 |
[RadioButton] CustomRadioButton (0) | 2020.06.12 |
[RadioButtion] 2개의 라디오 버튼 제어 (0) | 2020.06.12 |