Example #1
0
 /**
  * Sets whether new items or all items should be animated when they become visible.
  *
  * @param onlyAnimateNew True if only new items should be animated; false otherwise.
  */
 public void setShouldOnlyAnimateNewItems(boolean onlyAnimateNew) {
   mHelper.setShouldOnlyAnimateNewItems(onlyAnimateNew);
 }
Example #2
0
 /**
  * Sets the desired transition effect.
  *
  * @param transitionEffect Numeric constant representing a bundled transition effect.
  */
 public void setTransitionEffect(int transitionEffect) {
   mHelper.setTransitionEffect(transitionEffect);
 }
Example #3
0
 /**
  * Sets the desired transition effect.
  *
  * @param transitionEffect The non-bundled transition provided by the client.
  */
 public void setTransitionEffect(JazzyEffect transitionEffect) {
   mHelper.setTransitionEffect(transitionEffect);
 }
Example #4
0
 /** @see android.widget.AbsListView#setOnScrollListener */
 @Override
 public final void setOnScrollListener(OnScrollListener l) {
   mHelper.setOnScrollListener(l);
 }