In old code when I was using ListView with custom adapter I could get item with this code.
ListView
Message msg = (Message) adapter.getItem(poistion);
In recycleview you can get items from RecyclerView adapter by using below code,
RecyclerView rv_list_frames; public frames getItem(int position) { return rv_list_frames.get(position); }
i wish above that can help you for getting items..