Created
November 23, 2016 03:28
-
-
Save aashreys/ba62368f6a7c29fd7d066661a5dce53c to your computer and use it in GitHub Desktop.
Modified ForegroundImageView from Jake Wharton's original code. Implemented #drawableHotspotChanged() to start ripple effect from a touch point.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.aashreys.walls.ui.utils; | |
import android.content.Context; | |
import android.content.res.TypedArray; | |
import android.graphics.Canvas; | |
import android.graphics.drawable.Drawable; | |
import android.os.Build; | |
import android.util.AttributeSet; | |
import android.widget.ImageView; | |
import com.aashreys.walls.R; | |
public class ForegroundImageView extends ImageView { | |
private Drawable foreground; | |
public ForegroundImageView(Context context) { | |
this(context, null); | |
} | |
public ForegroundImageView(Context context, AttributeSet attrs) { | |
super(context, attrs); | |
TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.ForegroundImageView); | |
Drawable foreground = a.getDrawable(R.styleable.ForegroundImageView_android_foreground); | |
if (foreground != null) { | |
setForeground(foreground); | |
} | |
a.recycle(); | |
} | |
/** | |
* Supply a drawable resource that is to be rendered on top of all of the child | |
* views in the frame layout. | |
* | |
* @param drawableResId The drawable resource to be drawn on top of the children. | |
*/ | |
public void setForegroundResource(int drawableResId) { | |
setForeground(getContext().getResources().getDrawable(drawableResId)); | |
} | |
@Override | |
protected boolean verifyDrawable(Drawable who) { | |
return super.verifyDrawable(who) || who == foreground; | |
} | |
@Override | |
public void jumpDrawablesToCurrentState() { | |
super.jumpDrawablesToCurrentState(); | |
if (foreground != null) { foreground.jumpToCurrentState(); } | |
} | |
@Override | |
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { | |
super.onMeasure(widthMeasureSpec, heightMeasureSpec); | |
if (foreground != null) { | |
foreground.setBounds(0, 0, getMeasuredWidth(), getMeasuredHeight()); | |
invalidate(); | |
} | |
} | |
@Override | |
protected void drawableStateChanged() { | |
super.drawableStateChanged(); | |
if (foreground != null && foreground.isStateful()) { | |
foreground.setState(getDrawableState()); | |
} | |
} | |
@Override | |
public void drawableHotspotChanged(float x, float y) { | |
super.drawableHotspotChanged(x, y); | |
if (foreground != null && Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) { | |
foreground.setHotspot(x, y); | |
} | |
} | |
@Override | |
protected void onSizeChanged(int w, int h, int oldw, int oldh) { | |
super.onSizeChanged(w, h, oldw, oldh); | |
if (foreground != null) { | |
foreground.setBounds(0, 0, w, h); | |
invalidate(); | |
} | |
} | |
@Override | |
public void draw(Canvas canvas) { | |
super.draw(canvas); | |
if (foreground != null) { | |
foreground.draw(canvas); | |
} | |
} | |
/** | |
* Supply a Drawable that is to be rendered on top of all of the child | |
* views in the frame layout. | |
* | |
* @param drawable The Drawable to be drawn on top of the children. | |
*/ | |
public void setForeground(Drawable drawable) { | |
if (foreground == drawable) { | |
return; | |
} | |
if (foreground != null) { | |
foreground.setCallback(null); | |
unscheduleDrawable(foreground); | |
} | |
foreground = drawable; | |
if (drawable != null) { | |
drawable.setCallback(this); | |
if (drawable.isStateful()) { | |
drawable.setState(getDrawableState()); | |
} | |
} | |
requestLayout(); | |
invalidate(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment