Joey Tan

Results 10 comments of Joey Tan

Is there a way to use this via Gradle dependency? I don't think it will be merged anytime soon.

Thanks for the reply. Do you know if this works on API 28/ Pie?

Maybe you're looking for this: https://developer.android.com/reference/android/support/v4/widget/SwipeRefreshLayout

Don't quote me, but what I'm understanding is that `onLayout` is only called when that View UI is updated, so if you're changing its position or size in the background...

An even easier way is to just check if the ExpandableTextView is ellipsized. ``` Layout layout = expTextView.getLayout(); if(layout != null) { int lines = layout.getLineCount(); if(lines > 0) {...

The solution, as shown further into the tutorial, is to use `coerceAtLeast(minimumValue: T)` to ensure this value is not less than specified minimumValue. ``` Column(modifier = Modifier .weight(1f) .padding(bottom =...

I don't see this in the backlog anymore?

Is there a way to end session silently but don't redirect?

@wtmoose I'm interested in the feature! I think it makes sense to have the ability to snap headers in place without having to scroll so much.

Got it thanks for the prompt response! I asked because a large part of my screen is taken up in the headerTitle, and the only part I need it to...