17

我对 Android Glide 有疑问。我正在尝试快速交换我的图像,它们只是变成了所有占位符大小,而我的占位符图像非常小。那么我需要做什么?

也许我需要检查它是否已加载或其他东西,但我不知道如何。

Glide.with(this)
    .load(quest.get(id).getImage())
    .placeholder(R.drawable.load)
    .fitCenter()
    .crossFade()
    .into(imageView);
4

5 回答 5

19

根据Glide GitHub 页面上的这个问题,您可以通过在 Glide 请求中添加以下行来修复它:

  .dontAnimate()

这将使您的满载线:

  Glide.with(context)
            .load("http://lorempixel.com/150/150")
            .placeholder(R.drawable.no_image)
            .override(100, 100)
            .dontAnimate()
            .into(imageView);
于 2015-10-27T07:17:05.150 回答
2

我这样做如下所述:

这个想法是最初将比例类型设置为占位符的要求并附加侦听器以在下载图像后再次将比例类型更改为下载图像的要求。

//ivBuilderLogo = Target ImageView
//Set the scale type to as required by your place holder
//ScaleType.CENTER_INSIDE will maintain aspect ration and fit the placeholder inside the image view
holder.ivBuilderLogo.setScaleType(ImageView.ScaleType.CENTER_INSIDE); 

//AnimationDrawable is required when you are using transition drawables
//You can directly send resource id to glide if your placeholder is static
//However if you are using GIFs, it is better to create a transition drawable in xml 
//& use it as shown in this example
AnimationDrawable animationDrawable;
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP)
     animationDrawable=(AnimationDrawable)context.getDrawable(R.drawable.anim_image_placeholder);
else
     animationDrawable=(AnimationDrawable)context.getResources().getDrawable(R.drawable.anim_image_placeholder);
animationDrawable.start();

Glide.with(context).load(logo_url)
                   .placeholder(animationDrawable)
                   .listener(new RequestListener<String, GlideDrawable>() {
                        @Override
                        public boolean onException(Exception e, String model, Target<GlideDrawable> target, boolean isFirstResource)
                        {
                           return false;
                        }

                        //This is invoked when your image is downloaded and is ready 
                        //to be loaded to the image view
                        @Override
                        public boolean onResourceReady(GlideDrawable resource, String model, Target<GlideDrawable> target, boolean isFromMemoryCache, boolean isFirstResource)
                        {   
                        //This is used to remove the placeholder image from your ImageView 
                        //and load the downloaded image with desired scale-type(FIT_XY in this case)
                        //Changing the scale type from 'CENTER_INSIDE' to 'FIT_XY' 
                        //will stretch the placeholder for a (very) short duration,
                        //till the downloaded image is loaded
                        //setImageResource(0) removes the placeholder from the image-view 
                        //before setting the scale type to FIT_XY and ensures that the UX 
                        //is not spoiled, even for a (very) short duration
                            holder.ivBuilderLogo.setImageResource(0);
                            holder.ivBuilderLogo.setScaleType(ImageView.ScaleType.FIT_XY);
                            return false;
                        }
                    })
                    .into( holder.ivBuilderLogo);

我的过渡可绘制(R.drawable.anim_image_placeholder):

(如果使用静态图像则不需要)

<?xml version="1.0" encoding="utf-8"?>
<animation-list
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:oneshot="false">
    <item android:drawable="@drawable/loading_frame1" android:duration="100" />
    <!--<item android:drawable="@drawable/loading_frame2" android:duration="100" />-->
    <item android:drawable="@drawable/loading_frame3" android:duration="100" />
    <!--<item android:drawable="@drawable/loading_frame4" android:duration="100" />-->
    <item android:drawable="@drawable/loading_frame5" android:duration="100" />
    <!--<item android:drawable="@drawable/loading_frame6" android:duration="100" />-->
    <item android:drawable="@drawable/loading_frame7" android:duration="100" />
    <!--<item android:drawable="@drawable/loading_frame8" android:duration="100" />-->
    <item android:drawable="@drawable/loading_frame9" android:duration="100" />
    <!--<item android:drawable="@drawable/loading_frame10" android:duration="100" />-->
</animation-list>
于 2017-01-04T08:31:15.697 回答
1

我在这方面所做的是使用 override() 来强制图像大小。如果您有一个gridview,并且您需要在每行中有两个图像,那么您可以通过以下方式找到以像素为单位的屏幕尺寸来计算图像的正确宽度和高度:

    WindowManager wm = (WindowManager) context.getSystemService(Context.WINDOW_SERVICE);
    Display display = wm.getDefaultDisplay();
    Point size = new Point();
    display.getSize(size);
    placeholderWidth = size.x / 2 ;
    placeholderHeight = size.x * 3 / 2 ; // based on the image's height to width ratio

一旦掌握了每个图像所需的宽度和高度,就可以轻松使用覆盖:

    Glide.with(context)
            .load(url)
            .placeholder(R.drawable.loading)
            .override(placeholderWidth,placeholderHeight)                
            .into(viewHolder.imageViewHolder);
于 2016-02-04T19:52:49.210 回答
0

如果有人像我一样从搜索中来到这里并想知道如何更改 Glide 的placeholder大小但保持图像大小原始(在我的情况下占位符太大),这就是解决方案。placeholder用标签将你的drawable包装在另一个drawable中inset

<?xml version="1.0" encoding="utf-8"?>
<inset xmlns:android="http://schemas.android.com/apk/res/android"
    android:inset="20%">

    <animated-rotate
        android:drawable="@drawable/ic_loading"
        android:pivotX="50%"
        android:pivotY="50%" />

</inset>

请注意,您可以替换animated-rotate为任何允许的标签。此外,您可以insets为 drawable 的每一侧设置不同的(insetTopinsetBottom等等),并指定 insetsdp%

于 2021-03-17T14:37:17.930 回答
0

如果我正确理解您的问题,您需要加载图像,但它们的宽度和高度必须大于您的占位符图像。要解决您的问题,您首先应该阅读 Glide 的文档。我在 xml 文件中看不到您的 ImageView 定义,但我认为您使用 wrap_content 属性作为宽度和高度。如果我是对的,那就是你的瓶颈。在图像加载开始之前,Glide 会获得准确的 ImageView 宽度和高度。之后,它从网络加载图像,同时根据 ImageView 属性(宽度或高度)之一调整其大小。这就是为什么加载后会得到小图像的原因。要解决您的问题,只需将 ImageView 的宽度或高度设置为您希望看到的值。图像的另一面将由 Glide 逻辑自动计算。

于 2015-08-20T16:11:01.317 回答