I'm currently using the Epoxy library
instead of RecyclerView
.
However, since Epoxy
is built on the basis of RecyclerView
, let's just call it RecyclerView
.
Problem 1 . (Image 1 & Image 2)
When i return to another screen after entering a value in the
EditText
of theRecyclerView item
, the entered data is moved randomly.
Problem 2 . (Image 3)
After adding enough
items
to be scrollable, i also enter values into theEditText
. And if i scroll down and come back, the data is moved to a random location.
Please tell me what is the reason and what is the proper solution.
Make sure you're overriding getItemViewType
, getItemId
and getItemCount
properly.