All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.robolectric.shadows.ShadowScrollView Maven / Gradle / Ivy

package org.robolectric.shadows;

import android.widget.ScrollView;
import org.robolectric.annotation.Implementation;
import org.robolectric.annotation.Implements;

@Implements(ScrollView.class)
public class ShadowScrollView extends ShadowViewGroup {

  @Implementation
  protected void smoothScrollTo(int x, int y) {
    scrollTo(x, y);
  }

  @Implementation
  protected void smoothScrollBy(int x, int y) {
    scrollBy(x, y);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy