Saving Image path from gallery to Room Database and display it in Recycler list

前端 未结 2 1712
夕颜
夕颜 2021-01-05 11:53

There are a list of students.each row shows an Image,Name and number. I created a Room database and only managed to populate \"name\" and \"number\" columns into the list us

2条回答
  •  旧巷少年郎
    2021-01-05 12:12

    Also, I am using the same function with SQLite I am the storing just image path and get from SQLite and load image using image URI

    holder.imgUserPhoto.setImageURI(Uri.parse(new File(contactModel.getContactPhoto()).toString()));
    

提交回复
热议问题