2016-03-07 19:22:56 -05:00
|
|
|
package eu.kanade.tachiyomi.widget
|
|
|
|
|
|
|
|
import android.content.Context
|
2016-06-30 19:39:57 -04:00
|
|
|
import android.support.v7.widget.LinearLayoutManager
|
2016-03-07 19:22:56 -05:00
|
|
|
import android.support.v7.widget.RecyclerView
|
|
|
|
|
2016-06-30 19:39:57 -04:00
|
|
|
class PreCachingLayoutManager(context: Context) : LinearLayoutManager(context) {
|
2016-03-07 19:22:56 -05: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
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|