1. ホーム
  2. アンドロイド

[解決済み】Glideライブラリで画像を丸くする方法は?

2022-04-06 23:55:11

質問

そこで、どなたかGlideで角丸の画像を表示する方法をご存じないでしょうか? Glideで画像を読み込んでいるのですが、角丸のパラメータをこのライブラリに渡す方法がわかりません。

以下のような画像を表示させたいのですが。

解決方法は?

グライドV4。

    Glide.with(context)
        .load(url)
        .circleCrop()
        .into(imageView);

グライドV3

を使用することができます。 RoundedBitmapDrawable は、Glideで円形の画像を作成するために使用されます。カスタムImageViewは必要ありません。

 Glide.with(context).load(url).asBitmap().centerCrop().into(new BitmapImageViewTarget(imageView) {
        @Override
        protected void setResource(Bitmap resource) {
            RoundedBitmapDrawable circularBitmapDrawable =
                    RoundedBitmapDrawableFactory.create(context.getResources(), resource);
            circularBitmapDrawable.setCircular(true);
            imageView.setImageDrawable(circularBitmapDrawable);
        }
    });