Android Glide 图像未显示在第一个屏幕上

标签 android android-glide

我正在使用 Android glide 加载远程图像,但在这里我遇到了一个奇怪的问题,第一个屏幕上的图像没有显示,但是当我向下滚动并再次向上滚动时,这些图像变得正常显示。这是屏幕截图: enter image description here 我也用谷歌搜索了这样的问题并找到了 duplicate ,在尝试了这些步骤之后它仍然不起作用,您可能需要检查代码,这是它:

public class SiteAdapter extends ArrayAdapter<Site> {
private int resourceId;
private List<Site> sites = null;
private Context context;
private SiteHolder siteHolder;
/**
 * @param context the current activity context, we can get it using the super ArrayAdapter constructor
 * @param resource the site_layout.xml file
 * @param objects the collection to store all the sites
 */
public SiteAdapter(Context context, int resource, List<Site> objects) {
    super(context, resource, objects);
    this.context = context;
    this.resourceId = resource;
    this.sites = objects;
}

@Override
public Site getItem(int position) {
    return sites.get(position);
}

@Override
public int getCount() {
    return sites.size();
}

//get the viewpage which inflate by site_layout.xml file
@Override
public View getView(int position, View convertView, ViewGroup parent) {
    Site site = getItem(position);
    View view = convertView;
    siteHolder = new SiteHolder();
    if (view == null) {
        LayoutInflater vi = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        view = vi.inflate(resourceId, null);
    }
    //this place we need to get the whole widget in site_layout.xml file
    siteHolder.image = (ImageView) view.findViewById(R.id.thumbnail);
    siteHolder.address = (TextView)view.findViewById(R.id.address);
    siteHolder.mallName = (TextView) view.findViewById(R.id.name);
    siteHolder.distance = (TextView) view.findViewById(R.id.distance);
    siteHolder.address.setText(site.getAddress());
    //set name of the view
    siteHolder.mallName.setText(site.getName());
    //set price of the view
    //set distance of the view
    siteHolder.distance.setText("<" + site.getDistance() + "m");
    //set image
    ImageTask task = new ImageTask();
    task.execute("http://xxxx/springmvc/getFirst/" + site.getName());
    return view;
}

//检测adapater中加载网络资源是否可行?结论:不可行
public String getImgUrl(String str){
    String data = "";
    try {
        URL u = new URL(str);
        HttpURLConnection conn = (HttpURLConnection) u.openConnection();
        InputStream is = conn.getInputStream();
        BufferedReader br = new BufferedReader(new InputStreamReader(is));
        String content = "";
        StringBuffer sb = new StringBuffer();
        while((content = br.readLine()) != null){
            sb.append(content);
        }
        data = sb.toString();
        br.close();
        is.close();
    } catch (MalformedURLException e) {
        e.printStackTrace();
    } catch (IOException e) {
        e.printStackTrace();
    }
    return data;
}
class ImageTask extends AsyncTask<String, Void, String>{

    @Override
    protected String doInBackground(String... str) {
        String data = "";
        data = getImgUrl(str[0]);
        return data;
    }

    @Override
    protected void onPostExecute(String s) {
        Glide.with(context)
            .load(s)
            .fitCenter()
            .into(siteHolder.image);
    }
}

class SiteHolder{
    ImageView image;
    TextView mallName;
    TextView address;
    TextView distance;
    }
}

如果有任何人以前遇到过这样的场景,请先谢谢。

最佳答案

参见 https://github.com/bumptech/glide/blob/master/README.md#compatibility

Round Pictures: CircleImageView/CircularImageView/RoundedImageView are known to have issues with TransitionDrawable (.crossFade() with .thumbnail() or .placeholder()) and animated GIFs, use a BitmapTransformation (.circleCrop() will be available in v4) or .dontAnimate() to fix the issue.

简而言之:舍入 View 总是将传入的 Drawable 栅格化为位图,如果 Drawable 中有动画(GIF 或 crossFade),这将不起作用。

在第一次加载时,占位符在检索图像时显示,然后淡入淡出到图像;稍后,当您向上滚动时,图像会立即从内存缓存中加载,因此没有动画。

关于Android Glide 图像未显示在第一个屏幕上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39939740/

相关文章:

java - Glide 4 : get GifDecoder of GifDrawable

android - RecyclerView + Glide 显示结果一团糟

android - 滑动 Java.lang.IllegalStateException : Cannot obtain size for recycled Bitmap: android. graphics.Bitmap@a4f3bcf[896x157] ARGB_8888

android - Glide - javax.net.ssl.SSLHandshakeException : java. security.cert.CertPathValidatorException:找不到证书路径的信任 anchor

android - 使用 id 不是 url 的 Glide 图像缓存

android - 在 ListFragment 中没有事先关闭()的情况下完成游标

Android 应用程序名称和图标在手机重启之前不会改变(应用程序更新后)

java - 尝试调用虚拟方法。显示位置的应用程序

android - 如何获得屏幕的物理尺寸?

android - 如何获取可用的 wifi 网络并将它们显示在 android 的列表中