Skip to content

Instantly share code, notes, and snippets.

View kjsolo's full-sized avatar

Solo Ho kjsolo

View GitHub Profile
@kjsolo
kjsolo / ForegroundImageView.java
Created December 11, 2017 02:57 — 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;