I am trying to get child view by position. I could get view when one item is clicked:
rvSellRecords.addOnItemTouchListener(new RecyclerItemClickListener(
Write this method in adapter.
public Object getItem(int position) { return yourArrayList.get(position); }
and you just need to call it like
yourAdapter.getItem(2);
pass your required position. Hope it solves your problem.