Android Open Source - ParallaxScroll Parallax Scroll View






From Project

Back to project page ParallaxScroll.

License

The source code is released under:

MIT License

If you think the Android project ParallaxScroll listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.nirhart.parallaxscroll.views;
/*  w  w  w  .  jav a2s.  c o m*/
import java.util.ArrayList;

import android.content.Context;
import android.content.res.TypedArray;
import android.util.AttributeSet;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ScrollView;

import com.nirhart.parallaxscroll.R;

public class ParallaxScrollView extends ScrollView {

  private static final int DEFAULT_PARALLAX_VIEWS = 1;
  private static final float DEFAULT_INNER_PARALLAX_FACTOR = 1.9F;
  private static final float DEFAULT_PARALLAX_FACTOR = 1.9F;
  private static final float DEFAULT_ALPHA_FACTOR = -1F;
  private int numOfParallaxViews = DEFAULT_PARALLAX_VIEWS;
  private float innerParallaxFactor = DEFAULT_PARALLAX_FACTOR;
  private float parallaxFactor = DEFAULT_PARALLAX_FACTOR;
  private float alphaFactor = DEFAULT_ALPHA_FACTOR;
  private ArrayList<ParallaxedView> parallaxedViews = new ArrayList<ParallaxedView>();

  public ParallaxScrollView(Context context, AttributeSet attrs, int defStyle) {
    super(context, attrs, defStyle);
    init(context, attrs);
  }

  public ParallaxScrollView(Context context, AttributeSet attrs) {
    super(context, attrs);
    init(context, attrs);
  }

  public ParallaxScrollView(Context context) {
    super(context);
  }
  
  protected void init(Context context, AttributeSet attrs) {
    TypedArray typeArray = context.obtainStyledAttributes(attrs, R.styleable.ParallaxScroll);
    this.parallaxFactor = typeArray.getFloat(R.styleable.ParallaxScroll_parallax_factor, DEFAULT_PARALLAX_FACTOR);
    this.alphaFactor = typeArray.getFloat(R.styleable.ParallaxScroll_alpha_factor, DEFAULT_ALPHA_FACTOR);
    this.innerParallaxFactor = typeArray.getFloat(R.styleable.ParallaxScroll_inner_parallax_factor, DEFAULT_INNER_PARALLAX_FACTOR);
    this.numOfParallaxViews = typeArray.getInt(R.styleable.ParallaxScroll_parallax_views_num, DEFAULT_PARALLAX_VIEWS);
    typeArray.recycle();
  }
  
  @Override
  protected void onFinishInflate() {
    super.onFinishInflate();
    makeViewsParallax();
  }

  private void makeViewsParallax() {
    if (getChildCount() > 0 && getChildAt(0) instanceof ViewGroup) {
      ViewGroup viewsHolder = (ViewGroup) getChildAt(0);
      int numOfParallaxViews = Math.min(this.numOfParallaxViews, viewsHolder.getChildCount());
      for (int i = 0; i < numOfParallaxViews; i++) {
        ParallaxedView parallaxedView = new ScrollViewParallaxedItem(viewsHolder.getChildAt(i));
        parallaxedViews.add(parallaxedView);
      }
    }
  }
  
  @Override
  protected void onScrollChanged(int l, int t, int oldl, int oldt) {
    super.onScrollChanged(l, t, oldl, oldt);
    float parallax = parallaxFactor;
    float alpha = alphaFactor;
    for (ParallaxedView parallaxedView : parallaxedViews) {
      parallaxedView.setOffset((float)t / parallax);
      parallax *= innerParallaxFactor;
      if (alpha != DEFAULT_ALPHA_FACTOR) {
        float fixedAlpha = (t <= 0) ? 1 : (100 / ((float)t * alpha));
        parallaxedView.setAlpha(fixedAlpha);
        alpha /= alphaFactor;
      }
      parallaxedView.animateNow();
    }
  }
  
  protected class ScrollViewParallaxedItem extends ParallaxedView {

    public ScrollViewParallaxedItem(View view) {
      super(view);
    }

    @Override
    protected void translatePreICS(View view, float offset) {
      view.offsetTopAndBottom((int)offset - lastOffset);
      lastOffset = (int)offset;
    }
  }
}




Java Source Code List

com.nirhart.parallaxscroll.views.ParallaxExpandableListView.java
com.nirhart.parallaxscroll.views.ParallaxListViewHelper.java
com.nirhart.parallaxscroll.views.ParallaxListView.java
com.nirhart.parallaxscroll.views.ParallaxScrollView.java
com.nirhart.parallaxscroll.views.ParallaxedView.java
com.nirhart.parallaxscrollexample.CustomExpandableListAdapter.java
com.nirhart.parallaxscrollexample.CustomListAdapter.java
com.nirhart.parallaxscrollexample.MainActivity.java
com.nirhart.parallaxscrollexample.MultipleParallaxExpandableListView.java
com.nirhart.parallaxscrollexample.MultipleParallaxListView.java
com.nirhart.parallaxscrollexample.MultipleParallaxScrollView.java
com.nirhart.parallaxscrollexample.SingleParallaxAlphaScrollView.java
com.nirhart.parallaxscrollexample.SingleParallaxExpandableListView.java
com.nirhart.parallaxscrollexample.SingleParallaxListView.java
com.nirhart.parallaxscrollexample.SingleParallaxScrollView.java