Created
September 1, 2012 06:08
-
-
Save billynyh/3565241 to your computer and use it in GitHub Desktop.
my default styles.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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