文件夹样式快速滚动条 #300

This commit is contained in:
HapeLee
2025-11-13 20:34:24 +08:00
parent 1335678664
commit d512800d8e
2 changed files with 28 additions and 6 deletions
@@ -5,6 +5,7 @@ import android.content.Intent
import android.os.Build
import android.os.Bundle
import android.view.View
import android.view.ViewConfiguration
import androidx.activity.OnBackPressedCallback
import androidx.appcompat.widget.SearchView
import androidx.core.app.ActivityOptionsCompat
@@ -144,6 +145,7 @@ class BookshelfFragment2() : BaseBookshelfFragment(R.layout.fragment_bookshelf2)
}
private fun initRecyclerView() {
upFastScrollerBar()
binding.refreshLayout.setOnRefreshListener {
val books = booksAdapter.getBookItems()
val refreshList = if (AppConfig.bookshelfRefreshingLimit > 0) {
@@ -188,6 +190,17 @@ class BookshelfFragment2() : BaseBookshelfFragment(R.layout.fragment_bookshelf2)
}
}
private fun upFastScrollerBar() {
val showBookshelfFastScroller = AppConfig.showBookshelfFastScroller
binding.rvBookshelf.setFastScrollEnabled(showBookshelfFastScroller)
if (showBookshelfFastScroller) {
binding.rvBookshelf.scrollBarSize = 0
} else {
binding.rvBookshelf.scrollBarSize =
ViewConfiguration.get(requireContext()).scaledScrollBarSize
}
}
override fun upGroup(data: List<BookGroup>) {
if (data != bookGroups) {
bookGroups = data