您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關Android RecycleView實現滑動停止后自動吸附效果,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。
package com.example.testapp import androidx.appcompat.app.AppCompatActivity import android.os.Bundle import androidx.recyclerview.widget.LinearLayoutManager import androidx.recyclerview.widget.RecyclerView import com.example.testapp.code.note.JoinData import com.example.testapp.code.note.TheatreJoinerAdapter import kotlinx.android.synthetic.main.activity_main.* class MainActivity : AppCompatActivity() { //isUserControl 表示是否是 第二次定位滑動 @Volatile private var isUserControl = false var runnable = Runnable { smoothScrollToPosition()//處理rcy定位 } val list = arrayListOf<JoinData>() override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) setContentView(R.layout.activity_main) for (i in 0..50) { list.add(JoinData("小名${i}", i)) } rcy.layoutManager = LinearLayoutManager(this, LinearLayoutManager.VERTICAL, false) var adapter = TheatreJoinerAdapter(this, list) rcy.adapter = adapter rcy.addOnScrollListener(object : RecyclerView.OnScrollListener() { override fun onScrolled(r: RecyclerView, dx: Int, dy: Int) { super.onScrolled(r, dx, dy) //判斷是否是自動滾動 if (r.scrollState == RecyclerView.SCROLL_STATE_SETTLING && !isUserControl) {//自動滾動 //滾動幅度 在 -3 .. 3以內 其實時接近停止了 慢速滑動了 這時我們讓他停止 if (dy in -3..3) {//向下滾動 r.stopScroll() } } } override fun onScrollStateChanged(r: RecyclerView, newState: Int) { super.onScrollStateChanged(r, newState) if (newState == RecyclerView.SCROLL_STATE_IDLE) {//滑動停止 if (!isUserControl) { rcy.postDelayed(runnable, 200)//200 毫秒延時任務 } } if (r.scrollState != RecyclerView.SCROLL_STATE_SETTLING) {//非自動滑動 isUserControl = false } } }) } private fun smoothScrollToPosition() { isUserControl = true val stickyInfoView = rcy.getChildAt(0) //獲取頭部View 第一個view val bottom = stickyInfoView.bottom//獲取view底部到rcy的頂部高度 val height = stickyInfoView.measuredHeight//獲取view高度 if (bottom != height) {//去除正好停在正好的位置的情況 if (bottom >= (height / 2)) {//判斷view在上一半還是在下一半 rcy.smoothScrollBy(0, -(height - bottom))//二次滑動 } else { rcy.smoothScrollBy(0, bottom)//二次滑動 } } } }
關于Android RecycleView實現滑動停止后自動吸附效果就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。