Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- firebasefunctions
- ViewModel
- FRAGMENT
- Kotlin
- 안드로이드
- 코틀린
- Activity
- androidstudio
- BottomSheetDialog
- button
- MaterialButton
- nav_graph
- 뷰바인딩
- lifecyclescope
- ArrayList
- 안드로이드스튜디오
- Dialog
- OutlinedButton
- 랜덤ID
- 밑줄
- firebase
- ButtonWithButton
- 팝업액티비티
- EditText
- ROOM
- textview
- Android
- 안드로이드 스튜디오
- RealtimeDB
- Imageview
Archives
- Today
- Total
안드로이드 앱 개발
RecyclerView활용하여 GridView 만들기 본문
1. ListView 만들기와 95% 유사하므로
Listview 글을 참고하고
다만, LayoutManager에 GridLayoutManger를 선언해서 연결해주고
컬럼의 수만 추가로 파라미터에 넣어주면 된다.
int numberOfCoulmns = 2;
recyclerView.setLayoutManager(new GridLayoutManager(getActivity(),numberOfCoulmns));
recyclerView.setAdapter(adapter_messages);
RecyclerDecoration_Height decoration_height = new RecyclerDecoration_Height(20);
recyclerView.addItemDecoration(decoration_height);
RecyclerDecoration_Width decoration_width = new RecyclerDecoration_Width(20);
recyclerView.addItemDecoration(decoration_width);
* 리스트뷰에서는 신경쓸 필요 없던 컬럼간의 간격은
RecyclerDecoration 클래스를 따로 만들어서 사용했다.
public class RecyclerDecoration_Width extends RecyclerView.ItemDecoration {
private final int divWidth;
public RecyclerDecoration_Width(int divWidth){
this.divWidth = divWidth;
}
@Override
public void getItemOffsets(@NonNull Rect outRect, @NonNull View view, @NonNull RecyclerView parent, @NonNull RecyclerView.State state) {
super.getItemOffsets(outRect, view, parent, state);
if (parent.getChildAdapterPosition(view) != parent.getAdapter().getItemCount() - 1){
outRect.right = divWidth;
}
}
}
'안드로이드앱 > RecyclerView' 카테고리의 다른 글
RecyclerView 아이템 간격 조절하기 (0) | 2021.03.26 |
---|---|
RecyclerView의 click, itemClickListener 사용방법 - Kotlin (0) | 2021.03.26 |
RecyclerView 사용방법 - Listview (0) | 2021.03.25 |