1. XenForo 1.5.14 中文版——支持中文搜索!现已发布!查看详情
  2. Xenforo 爱好者讨论群:215909318 XenForo专区

新闻 Glide 3.6.0 发布,Android 图片加载和缓存库 下载

本帖由 漂亮的石头2015-05-03 发布。版面名称:软件资讯

  1. 漂亮的石头

    漂亮的石头 版主 管理成员

    注册:
    2012-02-10
    帖子:
    486,320
    赞:
    46
    Glide 3.6.0 发布,此版本是个 bug 修复版本,包括一些 Android 开源图像加载库的平滑滚动新特性。

    新特性


    • Add a clearDiskCache() method (#352, thanks to @nemphys)


    • Add simpler DiskCacheFactory implementation (#430, thanks to @Tolriq)


    • Add a fallback drawable to display for null models (#268)


    • Add a method to ViewTarget to globally set an id to use with setTag


    • Allow requests to be paused/resumed recursively for Activities and/or Fragments and their child fragments (5210ba8, thanks to Paul)


    • Add support for http headers to GlideUrl (fee6ed6, thanks to Ozzie)


    • Add somewhat more robust handling of uncaught exceptions (#435)


    • Add a custom request factory for the Volley integration library (3dcad68, thanks to Jason)
    构建/架构

    Bugs 修复


    • Check the response code in OkHttp integration library (#315)


    • Fix a crash mutating SquaringDrawable (#349)


    • Removed an unnecessary anti alias flag in the paint used for default transformations (#366)


    • Fix an NPE when the disk cache directory could not be created (#374)


    • Fix a concurrent modification starting requests when other requests complete/fail (#375)


    • Ensure preload targets are always cleared (#385)


    • Handle reading/skipping less than expected data in ImageHeaderParser (#387)


    • Work around a framework bug decoding webp images from InputStreams by basing available() on the content length (#392)


    • Always obey custom cross fade duration (#398)


    • Work around a framework issue where media store thumbs are not rotated (#400)


    • Fix an NPE in RequestFutureTarget (#401, thanks to @Tolriq)


    • Avoid throwing exceptions when provided invalid resource ids (#413)


    • Improve the error message when asked to load the empty string (#415)


    • Fix a race in DecodeJob's cancel method (#424)


    • Fix a race where downloading the same url twice with difference keys using SOURCE or ALL could cause the load to fail (#427)


    • Fix a calculation error in Downsampler.AT_MOST (#434)


    • Make sure code style in OkHttp library is consistent (#397, thanks to @floating-cat)


    • Fix a bitmap re-use bug during cross fades (a9f80ea)

    更多内容请看发行说明,此版本现已提供下载:


    Glide 是一个 Android 上的图片加载和缓存库,其目的是实现平滑的图片列表滚动效果。

    示例代码:


    // For a simple view:
    @Override
    public void onCreate(Bundle savedInstanceState) {
    ...

    ImageView imageView = (ImageView) findViewById(R.id.my_image_view);

    Glide.with(this).load("http://goo.gl/h8qOq7").into(imageView);
    }

    // For a list:
    @Override
    public View getView(int position, View recycled, ViewGroup container) {
    final ImageView myImageView;
    if (recycled == null) {
    myImageView = (ImageView) inflater.inflate(R.layout.my_image_view,
    container, false);
    } else {
    myImageView = (ImageView) recycled;
    }

    String url = myUrls.get(position);

    Glide.with(myFragment)
    .load(url)
    .centerCrop()
    .placeholder(R.drawable.loading_spinner)
    .crossFade()
    .into(myImageView);

    return myImageView;
    }
    Glide 3.6.0 发布,Android 图片加载和缓存库下载地址
     
正在加载...