diff options
author | Rami Santina <[email protected]> | 2011-10-06 20:21:31 +0300 |
---|---|---|
committer | Rami Santina <[email protected]> | 2011-10-06 20:21:31 +0300 |
commit | fe8e357ac03d8dd5e244879647fcec7fca60dedc (patch) | |
tree | 9f45329f07d379902dcc9c62c630f7972f96b73b /make/resources/android/res-launcher/values/styles.xml | |
parent | 25204678f889de889a6b23c170e17bd7f13d2c01 (diff) | |
parent | fa7627f623141c6fa15856c74d26c8ffe82550d0 (diff) |
Merge branch 'master' of git://github.com/sgothel/jogl
Diffstat (limited to 'make/resources/android/res-launcher/values/styles.xml')
-rw-r--r-- | make/resources/android/res-launcher/values/styles.xml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/make/resources/android/res-launcher/values/styles.xml b/make/resources/android/res-launcher/values/styles.xml new file mode 100644 index 000000000..5b7eb7e2e --- /dev/null +++ b/make/resources/android/res-launcher/values/styles.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <style name="Theme" parent="android:Theme"> + </style> + + <style name="Theme.Translucent" parent="android:style/Theme.Translucent"> + <item name="android:windowBackground">@drawable/translucent_background</item> + <item name="android:windowNoTitle">true</item> + <item name="android:colorForeground">#fff</item> + </style> + + <style name="Theme.Transparent"> + <item name="android:windowIsTranslucent">true</item> + <item name="android:windowAnimationStyle">@android:style/Animation.Translucent</item> + <item name="android:windowBackground">@drawable/transparent_background</item> + <item name="android:windowNoTitle">true</item> + <item name="android:colorForeground">#fff</item> + </style> + +</resources> |