Skip to content

Instantly share code, notes, and snippets.

@billynyh
Created November 24, 2013 09:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save billynyh/7625186 to your computer and use it in GitHub Desktop.
Save billynyh/7625186 to your computer and use it in GitHub Desktop.
ParallaxImageView copy from notboringactionbar
package com.flavienlaurent.notboringactionbar;
import android.content.Context;
import android.graphics.Canvas;
import android.util.AttributeSet;
import android.widget.ImageView;
/**
* Created by f.laurent on 21/11/13.
* antoine-merle.com inspiration
*/
public class ParallaxImageView extends ImageView {
private int mCurrentTranslation;
public ParallaxImageView(Context context) {
super(context);
}
public ParallaxImageView(Context context, AttributeSet attrs) {
super(context, attrs);
}
public ParallaxImageView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
}
public void setCurrentTranslation(int currentTranslation) {
mCurrentTranslation = currentTranslation;
invalidate();
}
@Override
public void draw(Canvas canvas) {
canvas.save();
canvas.translate(0, -mCurrentTranslation / 2) ;
super.draw(canvas);
canvas.restore();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment