Skip to content

Instantly share code, notes, and snippets.

@iamjpg
Created October 11, 2010 23:13
Show Gist options
  • Save iamjpg/621387 to your computer and use it in GitHub Desktop.
Save iamjpg/621387 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
android:orientation="vertical"
android:layout_height="fill_parent"
android:layout_width="fill_parent"
>
<ScrollView
android:layout_width="fill_parent"
android:layout_height="0px"
android:layout_weight="1"
>
<!-- ScrollView only accepts one child. -->
<LinearLayout
android:orientation="vertical"
android:layout_height="fill_parent"
android:layout_width="fill_parent"
>
<!-- START contents of scroll go here -->
<!-- END contents of scroll go here -->
</LinearLayout>
</ScrollView>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
>
<!-- START Menu Buttons -->
<!-- END Menu Buttons -->
</LinearLayout>
</LinearLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment