Add 50 dp buffer to isScrolledToBottom (#1228)

This commit is contained in:
Andrew
2023-06-14 10:34:49 +09:30
committed by GitHub
parent f0486061b1
commit cc015c45bd
2 changed files with 7 additions and 5 deletions

View File

@@ -4,8 +4,6 @@ import android.content.Context
import android.util.TypedValue
import androidx.annotation.AttrRes
import androidx.annotation.ColorInt
import androidx.recyclerview.widget.RecyclerView
import kotlin.math.max
@ColorInt
fun Context.getColorFromAttr(
@@ -16,6 +14,3 @@ fun Context.getColorFromAttr(
theme.resolveAttribute(attrColor, typedValue, resolveRefs)
return typedValue.data
}
val RecyclerView.isScrolledToBottom: Boolean
get() = max(0, computeVerticalScrollOffset()) + computeVerticalScrollExtent() >= computeVerticalScrollRange()