This is the app I\'m trying to build with all the elements mapped out below:
Everything works, however, I want the inner horizontal recyclerview not to capt
try
public OuterRecyclerViewAdapter(List- items) {
//Constructor stuff
viewPool = new RecyclerView.RecycledViewPool();
}
@Override
public ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
//Create viewHolder etc
holder.innerRecyclerView.setRecycledViewPool(viewPool);
}
inner recylerview will use the same viewpool and it'll be smoother