如何在Android中创建一个圆形的ImageView?

256

我该如何在Android中创建一个圆角的ImageView

我尝试了以下代码,但效果不佳。

代码:

Bitmap circleBitmap = Bitmap.createBitmap(bitmap.getWidth(), bitmap.getHeight(), Bitmap.Config.ARGB_8888);

BitmapShader shader = new BitmapShader (bitmap,  TileMode.CLAMP, TileMode.CLAMP);
Paint paint = new Paint();
paint.setShader(shader);

Canvas c = new Canvas(circleBitmap);
c.drawCircle(bitmap.getWidth()/2, bitmap.getHeight()/2, bitmap.getWidth()/2, paint);

imageView.setImageBitmap(circleBitmap);

圆形内的图片:

在此输入图片描述

我该怎么做?


1
您的帖子标题为rounded!! - Siddharth Lele
@IceMAN 是的,我已经附上了我需要做的图片..你能帮我吗? - user2134412
3
我会尽力而为。使用 CircularImageView 库"https://github.com/lopspower/CircularImageView",在我的情况下运行得很好。 - Naveed Ahmad
我已经使用下面的答案完成了这个任务,但是使用了不同的逻辑,请查看此链接https://dev59.com/SmEh5IYBdhLWcg3w7XLt#32346187。 - Syed Raza Mehdi
2
现在首选的解决方案应该是RoundedBitmapDrawable;它既漂亮又简单,并且是官方支持库的一部分(自v4支持库修订版21以来)。 - Jonik
显示剩余4条评论
1个回答

432

我也需要一个圆形ImageView,我使用了以下代码,你可以相应地进行修改:

import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.Bitmap.Config;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.graphics.PorterDuff.Mode;
import android.graphics.PorterDuffXfermode;
import android.graphics.Rect;
import android.graphics.drawable.BitmapDrawable;
import android.graphics.drawable.Drawable;
import android.util.AttributeSet;
import android.widget.ImageView;

public class RoundedImageView extends ImageView {

    public RoundedImageView(Context context) {
        super(context);
    }

    public RoundedImageView(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    public RoundedImageView(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
    }

    @Override
    protected void onDraw(Canvas canvas) {

        Drawable drawable = getDrawable();

        if (drawable == null) {
            return;
        }

        if (getWidth() == 0 || getHeight() == 0) {
            return;
        }
        Bitmap b = ((BitmapDrawable) drawable).getBitmap();
        Bitmap bitmap = b.copy(Bitmap.Config.ARGB_8888, true);

        int w = getWidth();
        @SuppressWarnings("unused")
        int h = getHeight();

        Bitmap roundBitmap = getCroppedBitmap(bitmap, w);
        canvas.drawBitmap(roundBitmap, 0, 0, null);

    }

    public static Bitmap getCroppedBitmap(Bitmap bmp, int radius) {
        Bitmap sbmp;

        if (bmp.getWidth() != radius || bmp.getHeight() != radius) {
            float smallest = Math.min(bmp.getWidth(), bmp.getHeight());
            float factor = smallest / radius;
            sbmp = Bitmap.createScaledBitmap(bmp,
                    (int) (bmp.getWidth() / factor),
                    (int) (bmp.getHeight() / factor), false);
        } else {
            sbmp = bmp;
        }

        Bitmap output = Bitmap.createBitmap(radius, radius, Config.ARGB_8888);
        Canvas canvas = new Canvas(output);

        final String color = "#BAB399";
        final Paint paint = new Paint();
        final Rect rect = new Rect(0, 0, radius, radius);

        paint.setAntiAlias(true);
        paint.setFilterBitmap(true);
        paint.setDither(true);
        canvas.drawARGB(0, 0, 0, 0);
        paint.setColor(Color.parseColor(color));
        canvas.drawCircle(radius / 2 + 0.7f, radius / 2 + 0.7f,
                radius / 2 + 0.1f, paint);
        paint.setXfermode(new PorterDuffXfermode(Mode.SRC_IN));
        canvas.drawBitmap(sbmp, rect, rect, paint);

        return output;
    }

}

72
这个视图很好,但它会扭曲非正方形的图像,我在这里修复了这个问题: https://gist.github.com/melanke/7158342 - melanke
4
由于onDraw()方法执行次数过多,当在选项卡中创建一个200*200(dip)的大圆形图片时,可能会导致OOM。因此,请使用图像加载库来加载圆形图片。请参考https://dev59.com/xHE95IYBdhLWcg3wGZ9_#23885808。 - shailesh
17
我注意到Google有一个“RoundedBitmapDrawableFactory”,我觉得它可能很有用。 - android developer
3
是我看错了还是代码混淆了半径和直径?所以在一些地方需要使用半径(drawCircle),但在设置位图尺寸时应该使用直径而不是半径。 - Eran Boudjnah
3
我可以建议一下吗: Bitmap roundBitmap = getCroppedBitmap(bitmap, w < h ? w : h); 这样,如果ImageView不是正方形,它总是会显示整个图像。 - Daan Luttik
显示剩余29条评论

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接