Android load pictures from firestorage with Glide











up vote
1
down vote

favorite
1












I load user's picture from firestorage with this code but it has some issues like the pics blink when scroll, reload every time I open the app and sometimes the pics take a long time to load I try to add .diskCacheStrategy(DiskCacheStrategy.NONE)
because it takes too long to change the picture, I need help to load it faster and make it not to blink



StorageReference storageReference = FirebaseStorage.getInstance().getReference().child("images/"+ theUID);
Glide.with(context.getApplicationContext())
.using(new FirebaseImageLoader())
.load(storageReference)
.asBitmap()
.diskCacheStrategy(DiskCacheStrategy.NONE)
.into(new BitmapImageViewTarget(pic) {
@Override
protected void setResource(Bitmap resource) {
RoundedBitmapDrawable drawable = RoundedBitmapDrawableFactory.create(context.getResources(),
Bitmap.createScaledBitmap(resource, 150, 150, false));
drawable.setCircular(true);
pic.setImageDrawable(drawable);
}
});









share|improve this question




























    up vote
    1
    down vote

    favorite
    1












    I load user's picture from firestorage with this code but it has some issues like the pics blink when scroll, reload every time I open the app and sometimes the pics take a long time to load I try to add .diskCacheStrategy(DiskCacheStrategy.NONE)
    because it takes too long to change the picture, I need help to load it faster and make it not to blink



    StorageReference storageReference = FirebaseStorage.getInstance().getReference().child("images/"+ theUID);
    Glide.with(context.getApplicationContext())
    .using(new FirebaseImageLoader())
    .load(storageReference)
    .asBitmap()
    .diskCacheStrategy(DiskCacheStrategy.NONE)
    .into(new BitmapImageViewTarget(pic) {
    @Override
    protected void setResource(Bitmap resource) {
    RoundedBitmapDrawable drawable = RoundedBitmapDrawableFactory.create(context.getResources(),
    Bitmap.createScaledBitmap(resource, 150, 150, false));
    drawable.setCircular(true);
    pic.setImageDrawable(drawable);
    }
    });









    share|improve this question


























      up vote
      1
      down vote

      favorite
      1









      up vote
      1
      down vote

      favorite
      1






      1





      I load user's picture from firestorage with this code but it has some issues like the pics blink when scroll, reload every time I open the app and sometimes the pics take a long time to load I try to add .diskCacheStrategy(DiskCacheStrategy.NONE)
      because it takes too long to change the picture, I need help to load it faster and make it not to blink



      StorageReference storageReference = FirebaseStorage.getInstance().getReference().child("images/"+ theUID);
      Glide.with(context.getApplicationContext())
      .using(new FirebaseImageLoader())
      .load(storageReference)
      .asBitmap()
      .diskCacheStrategy(DiskCacheStrategy.NONE)
      .into(new BitmapImageViewTarget(pic) {
      @Override
      protected void setResource(Bitmap resource) {
      RoundedBitmapDrawable drawable = RoundedBitmapDrawableFactory.create(context.getResources(),
      Bitmap.createScaledBitmap(resource, 150, 150, false));
      drawable.setCircular(true);
      pic.setImageDrawable(drawable);
      }
      });









      share|improve this question















      I load user's picture from firestorage with this code but it has some issues like the pics blink when scroll, reload every time I open the app and sometimes the pics take a long time to load I try to add .diskCacheStrategy(DiskCacheStrategy.NONE)
      because it takes too long to change the picture, I need help to load it faster and make it not to blink



      StorageReference storageReference = FirebaseStorage.getInstance().getReference().child("images/"+ theUID);
      Glide.with(context.getApplicationContext())
      .using(new FirebaseImageLoader())
      .load(storageReference)
      .asBitmap()
      .diskCacheStrategy(DiskCacheStrategy.NONE)
      .into(new BitmapImageViewTarget(pic) {
      @Override
      protected void setResource(Bitmap resource) {
      RoundedBitmapDrawable drawable = RoundedBitmapDrawableFactory.create(context.getResources(),
      Bitmap.createScaledBitmap(resource, 150, 150, false));
      drawable.setCircular(true);
      pic.setImageDrawable(drawable);
      }
      });






      android firebase firebase-storage firebaseui






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 10 at 15:20









      Frank van Puffelen

      218k25361386




      218k25361386










      asked Nov 10 at 13:54









      alserdar

      339




      339





























          active

          oldest

          votes











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














           

          draft saved


          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53239659%2fandroid-load-pictures-from-firestorage-with-glide%23new-answer', 'question_page');
          }
          );

          Post as a guest





































          active

          oldest

          votes













          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes
















           

          draft saved


          draft discarded



















































           


          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53239659%2fandroid-load-pictures-from-firestorage-with-glide%23new-answer', 'question_page');
          }
          );

          Post as a guest




















































































          Popular posts from this blog

          Full-time equivalent

          Bicuculline

          さくらももこ