Android Open Source - ParallaxScroll Parallaxed 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 .  j av a  2s. c o  m
import java.lang.ref.WeakReference;
import java.util.ArrayList;
import java.util.List;

import android.annotation.SuppressLint;
import android.os.Build;
import android.view.View;
import android.view.animation.AlphaAnimation;
import android.view.animation.Animation;
import android.view.animation.AnimationSet;

public abstract class ParallaxedView {
  static public boolean isAPI11 = Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB;
  protected WeakReference<View> view;
  protected int lastOffset;
  protected List<Animation> animations;

  abstract protected void translatePreICS(View view, float offset);
  
  public ParallaxedView(View view) {
    this.lastOffset = 0;
    this.animations = new ArrayList<Animation>();
    this.view = new WeakReference<View>(view);
  }

  public boolean is(View v) {
    return (v != null && view != null && view.get() != null && view.get().equals(v));
  }

  @SuppressLint("NewApi")
  public void setOffset(float offset) {
    View view = this.view.get();
    if (view != null)
      if (isAPI11) {
        view.setTranslationY(offset);
      } else {
        translatePreICS(view, offset);
      }
  }

  public void setAlpha(float alpha) {
    View view = this.view.get();
    if (view != null)
      if (isAPI11) {
        view.setAlpha(alpha);
      } else {
        alphaPreICS(view, alpha);
      }
  }
  
  protected synchronized void addAnimation(Animation animation) {
    animations.add(animation);
  }
  
  protected void alphaPreICS(View view, float alpha) {
    addAnimation(new AlphaAnimation(alpha, alpha));
  }
  
  protected synchronized void animateNow() {
    View view = this.view.get();
    if (view != null) {
      AnimationSet set = new AnimationSet(true);
      for (Animation animation : animations)
        if (animation != null)
          set.addAnimation(animation);
      set.setDuration(0);
      set.setFillAfter(true);
      view.setAnimation(set);
      set.start();
      animations.clear();
    }
  }
  
  public void setView(View view) {
    this.view = new WeakReference<View>(view);
  }
}




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