Skip to content

Instantly share code, notes, and snippets.

@donnfelker
Created March 27, 2012 17:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save donnfelker/2218327 to your computer and use it in GitHub Desktop.
Save donnfelker/2218327 to your computer and use it in GitHub Desktop.
Android XMLNS
<LinearLayout xmlns:a="http://schemas.android.com/apk/res/android"
a:layout_width="fill_parent"
a:layout_height="fill_parent"
a:orientation="vertical"
>
<ScrollView
a:layout_width="fill_parent"
a:layout_height="0dp"
a:layout_weight="1"
a:scrollbars="?orientation_specific_scrollbars"
a:fadingEdge="none"
>
<FrameLayout
a:layout_width="fill_parent"
a:layout_height="fill_parent"
>
<!-- Views that need to be injected are in here, omitted for brevity -->
</FrameLayout>
</ScrollView>
</LinearLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment