Questions tagged [epoxy-modelview]

EpoxyModel is a component of Epoxy library. EpoxyModels are placed inside the EpoxyController and are used to describe how views should be displayed in the RecyclerView.

20 questions
0
votes
1 answer

com.airbnb.epoxy.IllegalEpoxyUsage: You must set an id on a model before adding it

Using Epoxy Library first time. Getting bellow error rocess: in.droom, PID: 25269 com.airbnb.epoxy.IllegalEpoxyUsage: You must set an id on a model before adding it. Use the @AutoModel annotation if you want an id to be automatically generated for…
Ajeet Choudhary
  • 1,969
  • 1
  • 17
  • 41
0
votes
1 answer

How to avoid requestModelBuild for every widgets in a recyclerview

I have a recycler view with fixed number widgets vertically in a specific order. Some of the widgets also contain tabular data hence I've considered using nested recycler view also within it. Every widget makes http call asynchronously from the…
Bulu
  • 1,351
  • 3
  • 16
  • 37
0
votes
1 answer

Epoxy : how to use the @AutoModel annotation and handle clicks without controller?

I am starting to use the epoxy library because I am looking for a library to write less code while using the RecyclerView component. The EpoxyRecyclerView seems to be a great component since you can simply give the models (basically a simple list),…
rolandl
  • 1,769
  • 1
  • 25
  • 48
0
votes
0 answers

Airbnb Epoxy For Gmail like Dashboard interface

am building an app which displays a list of objects .Am using android recycler view for now. Now as per new requirements , I want to display this list in groups , similar to as described in this Question My Question is : Can I implement it using…
1nullpointer
  • 1,212
  • 1
  • 13
  • 19
0
votes
2 answers

airbnb epoxy - how to insert new items

I am having an issue in understanding how epoxy works in Android. There is also a tutorial here imagine i have an adapter as follows: public class PhotoAdapter extends EpoxyAdapter { private final LoaderModel loaderModel = new…
j2emanue
  • 60,549
  • 65
  • 286
  • 456
1
2