epoxy
epoxy copied to clipboard
Epoxy is an Android library for building complex screens in a RecyclerView
`StickyHeaderLinearLayoutManager` does not handle adapter dataset changes correctly. Specifically, it doesn't handle properly the case where a set of changes notifications includes an insert followed by one or more deletes...
So in Crashlytics we got a crash like the one below. ```kotlin Fatal Exception: java.lang.IllegalStateException: This holder is not currently bound. at com.airbnb.epoxy.EpoxyViewHolder.assertBound(EpoxyViewHolder.java:135) at com.airbnb.epoxy.EpoxyViewHolder.getHolder(EpoxyViewHolder.java:129) at com.airbnb.epoxy.EpoxyVisibilityTracker.processChild(EpoxyVisibilityTracker.kt:218) at com.airbnb.epoxy.EpoxyVisibilityTracker.processChangeEventWithDetachedView(EpoxyVisibilityTracker.kt:179) at...
I am using Carousel to horizontally display a set of photos in the vertical recycling view. Carousel has a title and gradient background color. When using Grouping Models in combination...
Hi When I trying to put the Carousel in a sticky header by StickyHeaderLinearLayoutManager, scroll position of the Carousel is not saving in states and after scrolling down, it's back...
I am using epoxy controller to show the results of 2 types: Products and Product Lists. I am seeing myself repeating a lot of states changes using booleans. Is there...
I have added Epoxy (using the databinding implementation) to the project and it works but only with version `4.6.4`. It's an older Java-only project and all necessary dependencies have been...
Right now the composition of `ComposeView` in `ComposeEpoxyModel` isn't properly disposed. This leads to issues where e.g. when navigating to away from the screen where the `ComposeEpoxyModel` is rendered, and...
``` Fatal Exception: java.lang.NullPointerException: null cannot be cast to non-null type java.lang.Class at com.qawafel.core.epoxy.ViewBindingKotlinModelKt.getSuperclassParameterizedType(ViewBindingKotlinModel.kt:73) at com.qawafel.core.epoxy.ViewBindingKotlinModelKt.getSuperclassParameterizedType(ViewBindingKotlinModel.kt:73) at com.qawafel.core.epoxy.ViewBindingKotlinModelKt.getSuperclassParameterizedType(ViewBindingKotlinModel.kt:73) at com.qawafel.core.epoxy.ViewBindingKotlinModelKt.getSuperclassParameterizedType(ViewBindingKotlinModel.kt:73) at com.qawafel.core.epoxy.ViewBindingKotlinModelKt.getBindMethodFrom(ViewBindingKotlinModel.kt:64) at com.qawafel.core.epoxy.ViewBindingKotlinModelKt.access$getBindMethodFrom(ViewBindingKotlinModel.kt:1) at com.qawafel.core.epoxy.ViewBindingKotlinModel$bindingMethod$2.invoke(ViewBindingKotlinModel.kt:29) at com.qawafel.core.epoxy.ViewBindingKotlinModel$bindingMethod$2.invoke(ViewBindingKotlinModel.java:29) ```
We're getting an error when trying to compile against Android 34 and with the latest Android Gradle Plugin. If I remove the Epoxy library out of the equation, the error...
Hi there! Does anybody know or have examples how create nested RecyclerView?