Java

Android - Nested RecyclerView

kakaroo 2022. 3. 15. 01:17
반응형

 

article logo

Language: Java(자바)

 

 

1. Expand Type

github: https://github.com/thoughtbot/expandable-recycler-view

 

GitHub - thoughtbot/expandable-recycler-view: Custom Android RecyclerViewAdapters that collapse and expand

Custom Android RecyclerViewAdapters that collapse and expand - GitHub - thoughtbot/expandable-recycler-view: Custom Android RecyclerViewAdapters that collapse and expand

github.com

https://goodgoodminki.tistory.com/entry/%EC%95%88%EB%93%9C%EB%A1%9C%EC%9D%B4%EB%93%9C-%EC%BD%94%ED%8B%80%EB%A6%B0-%EC%A4%91%EC%B2%A9-%EB%A6%AC%EC%8B%B8%EC%9D%B4%ED%81%B4%EB%9F%AC%EB%B7%B0-expandable-3%EB%8E%81%EC%8A%A4-%EB%A6%AC%EC%8B%B8%EC%9D%B4%ED%81%B4%EB%9F%AC%EB%B7%B0-%EA%B5%AC%ED%98%84-Android-Kotlin-recyclerview-in-recyclerview-3depth-expandable-recyclerview

 

안드로이드 코틀린 중첩 리싸이클러뷰, expandable 3뎁스 리싸이클러뷰 구현 ~ Android Kotlin recyclerview

안드로이드 코틀린 중첩 리싸이클러뷰, expendable 3뎁스 리싸이클러뷰 구현 Android Kotlin recyclerview in recyclerview, 3depth expandable recyclerview 일반 리싸이클러뷰는 많이 구현해보았고, 2depth..

goodgoodminki.tistory.com

 

 

2. 하나의 Adapter를 이용하여 여러 View를 활용한 리사이클러뷰

https://yunaaaas.tistory.com/61

 

[Android/Kotlin] 멀티뷰 타입 RecyclerView 구현하기

오늘은 다음과 같은 멀티뷰 타입의 리사이클러뷰를 구현해보도록 하겠습니다 ! 사이드 프로젝트를 하면서 리사이클러뷰의 여러 itemview를 적용할 수 있는 방법에 대해 찾아보던 중 멀티뷰 타입

yunaaaas.tistory.com

 

3. Card 형식

 

https://medium.com/@ashishkudale/android-list-inside-list-using-recyclerview-73cff2c4ea95

 

Multiple Horizontal RecyclerView in Vertical RecyclerView like Google Play Store.

We are going to design this activity from scratch.

medium.com

https://jinsangjin.tistory.com/25

 

중첩리사이클러뷰 recyclerView 안에 recyclerView 넣기 #야놀자 앱 레이아웃 #nested recycelerview

야놀자 앱을 보면 다음과 같이 recyclerView 안에 recyclerView가 들어간 구조로 되어있다. 원리는 간단한다. 1. recyclerViewA를 만든다 2. recyclerViewA 어답터에서 ViewHolder에 recyclerViewB를 정의해준다...

jinsangjin.tistory.com

 

--> 3번 내용으로 구현해 본 NewsFeed 어플리케이션

 

 

4. 3과 유사

 

https://hungseong.tistory.com/15

 

[Android, Kotlin] Recycler View 안에 Recycler View 넣기, 중첩 RecyclerView

토이프로젝트로 영화 박스오피스 앱을 만들면서 꽤나 시간이 걸렸던 부분에 대해 기록한다. 본 영상처럼 Vertical Grid RecyclerView 안에 Horizon Linear RecyclerView를 넣도록 구현하고자 했다. class HomeAda..

hungseong.tistory.com

 

 


 

Scrollbar 생성

android:scrollbars="vertical"
android:scrollbarFadeDuration="10"	//0 : always visible

 

Scrollbar 이동

view?.smoothScrollToPosition(0)

 

 


Drag & Drop

.....

 

반응형

'Java' 카테고리의 다른 글

Coding - Smart Robot  (0) 2022.02.02
Coding - Meeting Room  (0) 2022.02.01