Slide 81
Slide 81 text
WebView only
• ArticleContainerͷ࣮
• ϔομʔͱϑολʔΛεΫϩʔϧͤ͞Δ
fun dispatchScroll(oldScrollY: Int, scrollY: Int) {
this.offsetY = scrollY
val oldScrollYAbs = Math.abs(oldScrollY)
val scrollYAbs = Math.abs(scrollY)
val offset = oldScrollYAbs - scrollYAbs
ViewCompat.offsetTopAndBottom(header, offset)
ViewCompat.offsetTopAndBottom(footer, offset)
}