Android Save images to SQLite or SDCard or memory

前端 未结 5 963
小蘑菇
小蘑菇 2020-11-29 05:58

I need to fetch images and some other data from server and then display it in the List. But as the number of records can be pretty large so I am not sure if I should save im

5条回答
  •  甜味超标
    2020-11-29 06:39

    Storing any heavy data that does not need the behavior of returning sub-parts of that data based on the query applied(like images, videos), should not be stored in database, rather only a reference to that data should be stored.

提交回复
热议问题