INNER CODE UNIT · Java
ShapeOfView
florent37/ShapeOfView · shapeofview/src/main/java/io/github/florent37/shapeofview/ShapeOfView.java:28
public class ShapeOfView extends FrameLayout {
private final Paint clipPaint = new Paint(Paint.ANTI_ALIAS_FLAG);
private final Path clipPath = new Path();
protected PorterDuffXfermode pdMode = new PorterDuffXfermode(PorterDuff.Mode.DST_OUT);
@Nullable
protected Drawable drawable = null;
private ClipManager clipManager = new ClipPathManager();
private boolean requiersShapeUpdate = true;
private Bitmap clipBitmap;
final Path rectView = new Path();
public ShapeOfView(@NonNull Context context) {
super(context);
init(context, null);