Home | History | Annotate | Download | only in shadows
      1 package org.robolectric.shadows;
      2 
      3 import android.widget.ScrollView;
      4 import org.robolectric.annotation.Implementation;
      5 import org.robolectric.annotation.Implements;
      6 
      7 @Implements(ScrollView.class)
      8 public class ShadowScrollView extends ShadowFrameLayout {
      9 
     10   @Implementation
     11   public void smoothScrollTo(int x, int y) {
     12     scrollTo(x, y);
     13   }
     14 }
     15