0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

AndroidViewで対象のアイテムを最上位にスクロールさせる

Posted at

はじめに

今回はAndroid ViewでRecyclerViewの最上位に任意のアイテムまでスクロールする方法を紹介します

本文

早速ですが、コードは下記のようになります

binding.recycler.post {
                val smoothScroller: RecyclerView.SmoothScroller =
                    object : LinearSmoothScroller(context) {
                        override fun getVerticalSnapPreference(): Int {
                            return SNAP_TO_START
                        }
                    }
                smoothScroller.targetPosition = it
                binding.recycler.layoutManager?.startSmoothScroll(smoothScroller)
            }

postはViewの準備ができたときに呼ばされるコールバックになっており、その中でRecylcerViewのSmoothScorllerに対してSNAP_TO_STARTを設定します
こうすることでSmoothScrollを呼び出したときに該当のアイテムがトップに来るようにスクロールしてくれます

最後に

よくあるScrollToではギリギリ見えるところまでしかスクロールしてくれなかったので躓いてしまいました
備忘録として残しておきますが、どなたかのお役に立てたら幸いです

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?