Skip to content

Instantly share code, notes, and snippets.

@shirohata
shirohata / ForegroundImageView.java
Created November 24, 2016 13:40 — forked from JakeWharton/ForegroundImageView.java
An ImageView which supports a foreground drawable.
import android.content.Context;
import android.content.res.TypedArray;
import android.graphics.Canvas;
import android.graphics.drawable.Drawable;
import android.util.AttributeSet;
import android.widget.ImageView;
public class ForegroundImageView extends ImageView {
private Drawable foreground;