Skip to content

Instantly share code, notes, and snippets.

View rafalzawadzki's full-sized avatar
🍌
Coding something

Rafal Zawadzki rafalzawadzki

🍌
Coding something
View GitHub Profile
@jerrellmardis
jerrellmardis / RoundedRelativeLayout.java
Last active May 11, 2018 06:22
A {@link android.widget.RelativeLayout} that supports rounded corners and proper child view clipping. Perfect for situations where you have full bleed images that you want clipped to the bounds of this layout.
import android.content.Context;
import android.content.res.TypedArray;
import android.graphics.Canvas;
import android.graphics.Path;
import android.graphics.RectF;
import android.util.AttributeSet;
import android.widget.RelativeLayout;
/**
* A {@link android.widget.RelativeLayout} that supports rounded corners.