Glide 圆角

RequestOptions options = new RequestOptions();
        options.centerCrop().transform(new RoundedCorners(20));
        Glide.with(mContext).load(sth)
                .apply(options)
                .into(swh);

你可能感兴趣的:(android)