Skip to content

Instantly share code, notes, and snippets.

@rocboronat
Created January 4, 2017 12:35
Show Gist options
  • Save rocboronat/a00a76c4af63d23495b6a1237ef6113b to your computer and use it in GitHub Desktop.
Save rocboronat/a00a76c4af63d23495b6a1237ef6113b to your computer and use it in GitHub Desktop.
Espresso has issues scrolling this ScrollView :·(
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<EditText
android:id="@+id/edittext"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:hint="I'm an edittext" />
<EditText
android:id="@+id/edittext_very_far_away"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="800dp"
android:hint="I'm an edittext, too!" />
</LinearLayout>
</ScrollView>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment