Exemplo n.º 1
0
  public void setPosition(int position) {
    mScroller.startScroll(
        position, 0, // startX, startY
        0, 0, 0); // dx, dy, duration

    // This forces the scroller to reach the final position.
    mScroller.abortAnimation();
  }