Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
  • Catching while showing images using ParseFile through parse.com

    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 552
    Comment on it

    The problem that I encountered when showing images in ListView from Parse.com is catching because we get ParseFile from cloud.

     

    So I first change ParseFile to byte[] and then use Glide library that allow byte[] also to load image.
    Glide's primary focus is on making scrolling any kind of a list of images as smooth and fast as possible, but Glide is also effective for almost any case where you need to fetch, resize, and display a remote image.

    To implement Glide library, first of all add dependency in gradle file.

    1. compile 'com.github.bumptech.glide:glide:3.7.0'
    2. compile 'com.android.support:support-v4:19.1.0'


    For dependency on proguard config, you need to add these lines in proguard.cfg

    1. -keep public class * implements com.bumptech.glide.module.GlideModule
    2. -keep public enum com.bumptech.glide.load.resource.bitmap.ImageHeaderParser$** {
    3. **[] $VALUES;
    4. public *;
    5. }

     


    Below is the code to load ParseFile using Glide library

    1. parseFile.getDataInBackground(new GetDataCallback() {
    2. @Override
    3. public void done(byte[] data, ParseException e) {
    4. Bitmap bitmap = BitmapFactory.decodeByteArray(data, 0, data.length);
    5. FlexLogger.createLog("Bitmap: " + bitmap);
    6. Glide.with(mContext).load(data).into(holder.challengeImage);
    7.  
    8. }
    9. });

     

 0 Comment(s)

Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Reset Password
Fill out the form below and reset your password: