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
- Express
- NPM
- mybatis
- SSL
- JavaScript
- R
- Spring
- react
- vaadin
- xPlatform
- GIT
- Python
- 공정능력
- SPC
- plugin
- mapreduce
- Sqoop
- Java
- table
- Android
- es6
- hadoop
- Kotlin
- 보조정렬
- Eclipse
- SQL
- IntelliJ
- tomcat
- window
- MSSQL
Archives
- Today
- Total
DBILITY
안드로이드 recyclerView scroll 본문
반응형
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
}
반응형
'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