BESTMobile/android/mobile/res/values/style.xml
macgregor 7c6f612bfd init
2012-09-06 23:08:46 +05:30

17 lines
808 B
XML

<resources>
<style name="Theme.Transparent" parent="android:Theme">
<item name="android:windowNoTitle">true</item>
<item name="android:windowAnimationStyle">@style/Animations.SplashScreen</item>
</style>
<style name="Animations" parent="@android:Animation" />
<style name="Animations.SplashScreen">
<item name="android:windowEnterAnimation">@anim/fade_in_center</item>
<item name="android:windowExitAnimation">@anim/fade_out_center</item>
</style>
<declare-styleable name="ExpandablePanel">
<attr name="handle" format="reference" />
<attr name="content" format="reference" />
<attr name="collapsedHeight" format="dimension"/>
<attr name="animationDuration" format="integer"/>
</declare-styleable>
</resources>