我有一个ImageView并使用ColorFilter(PorterDuff.Mode.MULTIPLY)。
是否可以使用此colorFilter而不是整个图像?它必须像'margin'/'padding'。
实施例: 图像宽度和高度= 100dp。但是ColorFilter在ImageView的中心必须是50dp(宽度和高度)。
下面的图片是我需要的(红色= colorFilter)
答案 0 :(得分:1)
您可以继承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);
}
}