How to get item from RecyclerView adapter in Android

后端 未结 5 1113
情歌与酒
情歌与酒 2021-02-01 12:37

In old code when I was using ListView with custom adapter I could get item with this code.

Message msg = (Message) adapter.getItem(poistion);
         


        
5条回答
  •  野的像风
    2021-02-01 12:57

    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..

提交回复
热议问题