Skip to content

Instantly share code, notes, and snippets.

@billynyh
Created September 1, 2012 06:08
Show Gist options
  • Save billynyh/3565241 to your computer and use it in GitHub Desktop.
Save billynyh/3565241 to your computer and use it in GitHub Desktop.
my default styles.xml
<resources xmlns:android="http://schemas.android.com/apk/res/android">
<style name="AppTheme" parent="android:Theme.Light" />
<style name="FP">
<item name="android:layout_width">fill_parent</item>
<item name="android:layout_height">fill_parent</item>
</style>
<style name="WC">
<item name="android:layout_width">wrap_content</item>
<item name="android:layout_height">wrap_content</item>
</style>
<style name="WcFp">
<item name="android:layout_width">wrap_content</item>
<item name="android:layout_height">fill_parent</item>
</style>
<style name="FpWc">
<item name="android:layout_width">fill_parent</item>
<item name="android:layout_height">wrap_content</item>
</style>
</resources>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment