epoxy icon indicating copy to clipboard operation
epoxy copied to clipboard

Epoxy is an Android library for building complex screens in a RecyclerView

Results 113 epoxy issues
Sort by recently updated
recently updated
newest added
trafficstars

Hi, We are using epoxy library in our app for our SDUI usecase with data binding approach. The problem is , our UI is too much stateful, means bases on...

If I pass a callback to the EpoxyController, and the callback fires just when the Fragment was already in the state onDestroyView, do I really need to handle this in...

Hi, I try to use EpoxyInterop using a class that is annotated with @EpoxyModelClass. For example ``` @EpoxyModelClass(layout = R.layout.my_epoxy_layout) abstrac class MyEpoxyClass: EpoxyModelWithHolder(){ ...... } ``` My XML layout...

Hello, I'm reaching out to inquire about the correctness of my implementation for handling model binding with payloads in the Epoxy library. I fully understand, in such use-case, using the...

When I set `numViewsToShowOnScreen` on an even number with a point (ex: 4.3, 6.1, 6.8), Carousels sniping on the centered item at the start and end of the list. but...

Hey, I've moved one of my projects from Paging2 to Paging3 and I'm noticing an Exception. ``` E/AndroidRuntime: FATAL EXCEPTION: main Process: my_process, PID: 26595 java.lang.IndexOutOfBoundsException: Index: 1, Size: 1...

I'm looking for some more information about how EpoxyModels and EpoxyGroupModels handle accessibility. It seems as though the group will take all the internal contentDescriptions and apply append them all...

### Description When the models are rebuilt, below snippets https://github.com/airbnb/epoxy/blob/109d434d796da68f8599bf68ccc13cf833717a1f/epoxy-adapter/src/main/java/com/airbnb/epoxy/EpoxyVisibilityTracker.kt#L331-L340 may emit events in below order ``` VisibilityState.INVISIBLE VisibilityState.PARTIAL_IMPRESSION_INVISIBLE VisibilityState.UNFOCUSED_VISIBLE ``` although `detachEvent = true`. The screenshot below shows the...

My xml item is very large, when I check Profiler and see Janky frame of inflate() method. This is big issue in my app. I research and found AsyncLayoutInflater, it...

When I use the back button to return to my Fragment (which is only a vertical EpoxyRecyclerView using MvRx) it starts at the top of the list instead of the...