What size to store image on server to use with Android app
问题 I have an Android app that allows the user to upload profile pics. They are stored 300px X 300px on the server. In the app, I use them in either 40dp X 40dp or sometimes 100dp X 100dp. The 40dp's images are in ListView 's. I actually use a very popular third party LazyList to store the images (using an ImageLoader class) in a cache. Here is the exact library. I simply show image in my adapter like this: imageLoader.DisplayImage(profileUrl, holder.iv1); I take the web URL and display it