I am retrieving image from URI. But it is taking too much time to load. My average file size is 500k. How do I reduce that to 100k:
// Here is the code where I am displaying image URI
// The retrieval of URI using Picasso
public void setImage(final Context context, final String image) {
final ImageView postImage = (ImageView) mView.findViewById(R.id.allPostImage);
with(context).load(image).networkPolicy(NetworkPolicy.OFFLINE).into(postImage, new Callback() {
@Override
public void onSuccess() {
}
@Override
public void onError() {
Picasso.with(context).load(image).into(postImage);
}
});
}
Use this to compress your image size.