ImageView - 颜色过滤器

ImageView - ColorFilter

我有一个 ImageView 并使用一个 ColorFilter (PorterDuff.Mode.MULTIPLY)。

是否可以使用这个colorFilter而不是整个图像?它必须像 'margin' / 'padding'.

示例: 图片宽高=100dp。但是 colorFilter 必须在 ImageView 的中心为 50dp(宽度和高度)。

下图是我需要的(red = colorFilter)

您可以继承 ImageView 并覆盖其 onDraw() 方法。我发布了一个简约的解决方案,根据您的需要进行修改!

public class OverlayImageView extends ImageView {
    Paint paint;
    float padding = 30;

    public OverlayImageView(Context context) {
        super(context);
        init();
    }

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

    public OverlayImageView(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
        init();
    }

    private void init() {
        paint = new Paint();
        paint.setXfermode(new PorterDuffXfermode(PorterDuff.Mode.MULTIPLY));
        paint.setColor(Color.RED);
    }

    @Override
    protected void onDraw(Canvas canvas) {
        super.onDraw(canvas);

        canvas.drawRect(padding, padding, canvas.getWidth()-padding, canvas.getHeight()-padding, paint);
    }
}