2016-03-08 01:22:56 +01:00
|
|
|
package eu.kanade.tachiyomi.widget
|
|
|
|
|
|
|
|
import android.content.Context
|
2020-01-05 17:29:27 +01:00
|
|
|
import androidx.recyclerview.widget.LinearLayoutManager
|
|
|
|
import androidx.recyclerview.widget.RecyclerView
|
2016-03-08 01:22:56 +01:00
|
|
|
|
2016-07-01 01:39:57 +02:00
|
|
|
class PreCachingLayoutManager(context: Context) : LinearLayoutManager(context) {
|
2016-03-08 01:22:56 +01:00
|
|
|
|
2016-11-05 19:28:47 +01:00
|
|
|
init {
|
|
|
|
isItemPrefetchEnabled = false
|
|
|
|
}
|
|
|
|
|
2016-03-08 01:22:56 +01:00
|
|
|
companion object {
|
|
|
|
const val DEFAULT_EXTRA_LAYOUT_SPACE = 600
|
|
|
|
}
|
|
|
|
|
|
|
|
var extraLayoutSpace = 0
|
|
|
|
|
|
|
|
override fun getExtraLayoutSpace(state: RecyclerView.State): Int {
|
|
|
|
if (extraLayoutSpace > 0) {
|
|
|
|
return extraLayoutSpace
|
|
|
|
}
|
|
|
|
return DEFAULT_EXTRA_LAYOUT_SPACE
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|