1

我需要ImageView在 Android 中创建一个圆形。现在我使用Canvas.clipPath()但它不支持硬件加速。当然我使用View.LAYER_TYPE_SOFTWARE这个视图。

public class RoundedCornerImageView extends MaptrixImageView
{   
    private final Path clipPath = new Path();

    public RoundedCornerImageView(Context context)
    {
        this(context, null);
    }

    @SuppressLint("NewApi")
    public RoundedCornerImageView(Context context, AttributeSet attrs)
    {
        super(context, attrs);

        if (Build.VERSION.SDK_INT >= 11) {
               setLayerType(View.LAYER_TYPE_SOFTWARE, null);
        }
    }

    @Override
    protected void onDraw(Canvas canvas) 
    {   
        float radius = ((float) getWidth()) / 2;

        clipPath.reset();
        clipPath.addCircle(radius, radius, radius, Path.Direction.CW);

        canvas.clipPath(clipPath);
        super.onDraw(canvas);
    }
}

但我想在这个视图中使用硬件加速。我可以XferMode为此使用课程ImageView吗?

4

1 回答 1

0

XferMode 与硬件加速一起工作。但它有一些限制:http: //developer.android.com/guide/topics/graphics/hardware-accel.html#unsupported

但是,如果您仍想使用 clipPath,您将无法使用硬件加速。

于 2013-04-04T09:42:53.993 回答