mirror of
https://github.com/mihonapp/mihon.git
synced 2024-10-31 21:20:59 -04:00
42 lines
No EOL
1.1 KiB
Kotlin
42 lines
No EOL
1.1 KiB
Kotlin
package eu.kanade.tachiyomi.widget
|
|
|
|
import android.support.v4.view.PagerAdapter
|
|
import android.view.View
|
|
import android.view.ViewGroup
|
|
import java.util.*
|
|
|
|
abstract class RecyclerViewPagerAdapter : PagerAdapter() {
|
|
|
|
private val pool = Stack<View>()
|
|
|
|
var recycle = true
|
|
set(value) {
|
|
if (!value) pool.clear()
|
|
field = value
|
|
}
|
|
|
|
protected abstract fun createView(container: ViewGroup): View
|
|
|
|
protected abstract fun bindView(view: View, position: Int)
|
|
|
|
protected open fun recycleView(view: View, position: Int) {}
|
|
|
|
override fun instantiateItem(container: ViewGroup, position: Int): Any {
|
|
val view = if (pool.isNotEmpty()) pool.pop() else createView(container)
|
|
bindView(view, position)
|
|
container.addView(view)
|
|
return view
|
|
}
|
|
|
|
override fun destroyItem(container: ViewGroup, position: Int, obj: Any) {
|
|
val view = obj as View
|
|
recycleView(view, position)
|
|
container.removeView(view)
|
|
if (recycle) pool.push(view)
|
|
}
|
|
|
|
override fun isViewFromObject(view: View, obj: Any): Boolean {
|
|
return view === obj
|
|
}
|
|
|
|
} |