728x90
반응형
SMALL
- 준비물 -
1. 준비된 Recyclerview , Adapter
(추후 작성 예정)
2. library
implementation 'com.google.android.flexbox:flexbox:3.0.0'
1. 준비된 RecyclerView 를 아래와 같이 세팅해 준다
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/rcvMyList"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layoutManager="com.google.android.flexbox.FlexboxLayoutManager"/>
2. 클래스단 세팅
...
val rcvMyList = findViewById<RecyclerView>(R.id.rcvMyList)
rcvMyList.layoutManager = FlexboxLayoutManager(this).apply {
flexWrap = FlexWrap.WRAP
flexDirection = FlexDirection.ROW
justifyContent = JustifyContent.FLEX_START
}
//myAdapter 는 준비된 사용하기
rcvMyList.adapter = myAdapter
...
- 끝 -
'Android Study' 카테고리의 다른 글
EditText 패스워드 <-> 일반 Text 전환 함수 (0) | 2023.09.06 |
---|---|
App Finish 종료 방법 (0) | 2023.09.04 |
GlideApp 사용시 웹상에 나와있는 대부분 코드가 안될때 시도 방법 (0) | 2023.08.30 |
Button 에 rippple efect 적용하기 (0) | 2023.08.29 |
Android WebView 연동시키기 step-1 (0) | 2023.08.28 |