我需要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
吗?