I want to have an android app that displays users' facebook profile pictures. I'm wondering what the bast practice is for this purpose. Should I make ImageView load pictures at runtime from facebook URI? or save the pictures to my own server and send them to the devices in bytes on demand? or cache them locally? What is the "common" way of doing this?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
Personally, I would cache them locally unless you intend to have hundreds of them. It would make the app work offline and display the images a lot faster. You would have to update them regularly though as a user's Facebook profile picture can change fairly often. |
|||||
|