欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Android:glide设置圆角

程序员文章站 2024-03-26 08:30:17
...

首先得注意一下引用的版本

//图片加载框架
implementation 'com.github.bumptech.glide:glide:4.9.0'

使用

    //Glide设置图片圆角角度
    RoundedCorners roundedCorners = new RoundedCorners(10);
    //通过RequestOptions扩展功能,override:采样率,因为ImageView就这么大,可以压缩图片,降低内存消耗
    // RequestOptions options = RequestOptions.bitmapTransform(roundedCorners).override(20, 20);
    RequestOptions options = RequestOptions.bitmapTransform(roundedCorners);
    Glide.with(context)
            .load(lc.getVod_pic().toString())
            //.placeholder(R.drawable.ic_default_image)
            .error(R.drawable.ic_clipimage)
            .apply(options)
            .into(vod_pic);
相关标签: 视图 android