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 |
Tags
- table
- plugin
- Kotlin
- Python
- GIT
- Express
- window
- MSSQL
- Sqoop
- IntelliJ
- vaadin
- SSL
- Spring
- R
- Eclipse
- es6
- Java
- xPlatform
- mybatis
- react
- hadoop
- 공정능력
- SPC
- SQL
- mapreduce
- JavaScript
- NPM
- tomcat
- 보조정렬
- Android
Archives
- Today
- Total
DBILITY
안드로이드 recyclerView scroll 본문
728x90
반응형
private val smoothScroller: SmoothScroller by lazy {
object : LinearSmoothScroller(binding.root.context) {
override fun getVerticalSnapPreference(): Int {
return SNAP_TO_START
}
}
}
activityMainRecyclerView.apply {
layoutManager = LinearLayoutManager(root.context)
layoutManager?.apply {
smoothScroller.targetPosition = viewModel.items.value.size-1
startSmoothScroll(smoothScroller)
}
itemAnimator = null
adapter = todoListAdapter
}
728x90
'android > kotlin' 카테고리의 다른 글
안드로이드 TabLayout + ViewPager2 + Fragment swipe (0) | 2024.03.21 |
---|---|
안드로이드 ViewPager2 + Fragment swipe (0) | 2024.03.21 |
안드로이드 RecyclerView 기초 사용법 ( viewMoldel update 적용 ) (0) | 2024.03.11 |
kotlin reduce, fold (0) | 2024.03.11 |
안드로이드 RecyclerView 기초 사용법 ( viewMoldel 적용 ) (0) | 2024.03.07 |
Comments