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
- textview
- androidstudio
- lifecyclescope
- ROOM
- RealtimeDB
- MaterialButton
- Dialog
- EditText
- 안드로이드
- Imageview
- Activity
- 팝업액티비티
- 뷰바인딩
- 밑줄
- BottomSheetDialog
- ViewModel
- ArrayList
- Android
- 랜덤ID
- FRAGMENT
- Kotlin
- firebase
- 안드로이드스튜디오
- nav_graph
- button
- OutlinedButton
- ButtonWithButton
- firebasefunctions
- 안드로이드 스튜디오
- 코틀린
Archives
- Today
- Total
안드로이드 앱 개발
RecyclerView 아이템 간격 조절하기 본문
1. 구분선 추가
리사이클러뷰를 사용하는 자바소스에 아래 소스만 추가
DividerItemDecoration dividerDecoration =
new DividerDecoration(recyclerView.getContext(), new LinearLayoutManager(this).getOrientation());
recyclerView.addItemDecoration(dividerDecoration);
2. 간격추가
2-1 height
아래와 같은 자바 클래스 생성
public class RecyclerDecoration_Height extends RecyclerView.ItemDecoration {
private final int divHeight;
public RecyclerDecoration_Height(int divHeight){
this.divHeight = divHeight;
}
@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.bottom = divHeight;
}
}
}
그 다음 리사이클러뷰를 사용하는 자바소스에 적용
RecyclerDecoration_Height decoration_height = new RecyclerDecoration_Height(20);
recyclerView.addItemDecoration(decoration_height);
2-2 width
public class RecyclerViewDecoration extends RecyclerView.ItemDecoration {
private final int divWidth;
public RecyclerViewDecoration(int divWidth)
{
this.divWidth = divWidth;
}
@Override
public void getItemOffsets(Rect outRect, View view, RecyclerView parent, RecyclerView.State state)
{
super.getItemOffsets(outRect, view, parent, state);
outRect.right = divWidth;
}
}
'안드로이드앱 > RecyclerView' 카테고리의 다른 글
RecyclerView활용하여 GridView 만들기 (0) | 2021.03.26 |
---|---|
RecyclerView의 click, itemClickListener 사용방법 - Kotlin (0) | 2021.03.26 |
RecyclerView 사용방법 - Listview (0) | 2021.03.25 |