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
- Dialog
- Activity
- nav_graph
- 코틀린
- ROOM
- ViewModel
- 팝업액티비티
- ButtonWithButton
- Imageview
- RealtimeDB
- androidstudio
- EditText
- Kotlin
- MaterialButton
- firebase
- button
- 안드로이드 스튜디오
- 안드로이드스튜디오
- 랜덤ID
- firebasefunctions
- FRAGMENT
- BottomSheetDialog
- 안드로이드
- 밑줄
- OutlinedButton
- Android
- lifecyclescope
- textview
- 뷰바인딩
- ArrayList
Archives
- Today
- Total
목록RecyclerView 간격 조절 (1)
안드로이드 앱 개발
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_..
안드로이드앱/RecyclerView
2021. 3. 26. 01:06