Skip to content

Instantly share code, notes, and snippets.

@derekbrameyer
Created August 13, 2012 20:10
Show Gist options
  • Save derekbrameyer/3343779 to your computer and use it in GitHub Desktop.
Save derekbrameyer/3343779 to your computer and use it in GitHub Desktop.
<style name="Fill">
<item name="android:layout_width">fill_parent</item>
<item name="android:layout_height">fill_parent</item>
</style>
<style name="Wrap">
<item name="android:layout_width">wrap_content</item>
<item name="android:layout_height">wrap_content</item>
</style>
<style name="FillHeight" parent="Fill">
<item name="android:layout_width">wrap_content</item>
</style>
<style name="FillWidth" parent="Fill">
<item name="android:layout_height">wrap_content</item>
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment