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
- 코틀린
- ROOM
- firebasefunctions
- EditText
- 팝업액티비티
- OutlinedButton
- ArrayList
- 안드로이드 스튜디오
- androidstudio
- lifecyclescope
- firebase
- 안드로이드스튜디오
- button
- textview
- 안드로이드
- 랜덤ID
- FRAGMENT
- 뷰바인딩
- Android
- Kotlin
- nav_graph
- ButtonWithButton
- ViewModel
- 밑줄
- MaterialButton
- Dialog
- RealtimeDB
- Activity
- Imageview
- BottomSheetDialog
Archives
- Today
- Total
목록RecyclerView (1)
안드로이드 앱 개발
RecyclerView 사용방법 - Listview
1. RecyclerView를 사용할 Activity나 Fragment.xml에 RecyclerView 위젯을 추가한다. * scrollview 안에 바로 recyclerview만 넣으면 스크롤의 오류가 있다고 하니 유의하자 2. RecyclerView의 개별 row (item) xml을 작성만든다. res>layout> item.xml 3. RecyclerAdapter.java를 만들어준다. public class RecyclerAdapter_Memo extends RecyclerView.Adapter { ArrayList list; RecyclerAdapter_Memo(ArrayList list) { this.list = list; } @NonNull @Override public ViewHolder..
안드로이드앱/RecyclerView
2021. 3. 25. 23:59