我创建了一个自定义ImageView
来在图像中创建一个透明矩形,以使其后面的ImageView可见。但是,我无法做到。我已经看了很多其他答案,这就是我想出的:
public class MaskImageView extends ImageView {
private Paint maskPaint;
public MaskImageView(Context context) {
super(context);
init();
}
public MaskImageView(Context context, AttributeSet attrs) {
super(context, attrs);
init();
}
public MaskImageView(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
init();
}
@TargetApi(Build.VERSION_CODES.LOLLIPOP)
public MaskImageView(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) {
super(context, attrs, defStyleAttr, defStyleRes);
init();
}
public void init() {
maskPaint = new Paint();
maskPaint.setColor(Color.TRANSPARENT);
maskPaint.setAntiAlias(true);
maskPaint.setStyle(Paint.Style.FILL);
maskPaint.setXfermode(new PorterDuffXfermode(PorterDuff.Mode.CLEAR));
}
@Override
protected void onDraw(Canvas canvas) {
super.onDraw(canvas);
canvas.drawRect(100, 400, 900, 900, maskPaint);
}
public void setMaskWidth(int width) {
maskWidth = width;
}
}
这是XML布局:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/holo_red_dark"
android:scaleType="centerCrop"
android:src="@drawable/blackwhite" />
<io.example.test.MaskImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/holo_red_dark"
android:scaleType="centerCrop"
android:src="@drawable/color" />
</RelativeLayout>
我在左边看到了照片,但我希望它看起来像右边的照片。请注意,普通ImageView
drawable是MaskImageView
照片的灰度版本。
答案 0 :(得分:1)
我写了一个简单的View
,它扩展了ImageView
,它会做你正在做的事情。要使用它,您需要做的就是给它一个Rect,它将您想要的区域定义为灰度。
以下是代码:
public class MaskImageView extends ImageView
{
private Rect mMaskRect;
public MaskImageView(Context context)
{
super(context);
init();
}
public MaskImageView(Context context, AttributeSet attrs)
{
super(context, attrs);
init();
}
public MaskImageView(Context context, AttributeSet attrs, int defStyleAttr)
{
super(context, attrs, defStyleAttr);
init();
}
private void init()
{
mMaskRect = new Rect();
}
// Use this to define the area which should be masked.
public void setRect(Rect rect)
{
mMaskRect.set(rect);
}
@Override
protected void onDraw(Canvas canvas)
{
canvas.clipRect(mMaskRect, Region.Op.DIFFERENCE);
super.onDraw(canvas);
}
}
我测试了它,似乎效果很好。这应该可以帮到你。