我需要在Android中创建一个四舍五入的ImageView
。现在我使用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
的{{1}}课程吗?
答案 0 :(得分:0)
XferMode适用于硬件加速。但它有一些限制:http://developer.android.com/guide/topics/graphics/hardware-accel.html#unsupported
但是,如果您仍想使用clipPath,则无法使用硬件加速。