I see a need in my project to move from ListView to RecyclerView. But right I am facing some issues on adapter implementation.
In my current ListView implementation I am using CustomView instead of inflating there. Here is my current getView()
public View getView(int position, View containerRow, ViewGroup parent) {
return PanelViewFactory.createPanel(..)
}
But in the RecyclerView adapter there is no getView() method. We need to bind this custom view into respective view holder. But how can I do ths in current implementation since I m not inflating any layout in adapter. The view inflation is done in PanelViewFactory and i got only view instance here,. So please help me how to solve this issue.
Thanks in advance