100 lines
4.1 KiB
XML
100 lines
4.1 KiB
XML
<resources xmlns:android = "http://schemas.android.com/apk/res/android" >
|
|
|
|
<!--
|
|
Base application theme, dependent on API level. This theme is replaced
|
|
by AppBaseTheme from res/values-vXX/styles.xml on newer devices.
|
|
-->
|
|
<style name = "AppBaseTheme" parent = "android:Theme.Light" >
|
|
<!--
|
|
Theme customizations available in newer API levels can go in
|
|
res/values-vXX/styles.xml, while customizations related to
|
|
backward-compatibility can go here.
|
|
-->
|
|
</style >
|
|
|
|
<style name = "AppCompatTheme" parent = "Theme.AppCompat.Light" >
|
|
|
|
<!-- All customizations that are NOT specific to a particular API-level can go here. -->
|
|
<item name = "android:windowEnableSplitTouch" >false</item >
|
|
<item name = "android:splitMotionEvents" >false</item >
|
|
<item name = "android:windowActionBarOverlay" >true</item >
|
|
<item name = "android:windowContentOverlay" >@null</item >
|
|
<item name = "android:windowNoTitle" >true</item >
|
|
|
|
<item name = "android:windowBackground" >@color/background</item >
|
|
</style >
|
|
|
|
<!-- Application theme. -->
|
|
<style name = "AppTheme" parent = "@android:style/Theme.Holo.Light" >
|
|
|
|
<!-- All customizations that are NOT specific to a particular API-level can go here. -->
|
|
<item name = "android:windowEnableSplitTouch" >false</item >
|
|
<item name = "android:splitMotionEvents" >false</item >
|
|
<item name = "android:windowActionBarOverlay" >true</item >
|
|
<item name = "android:windowContentOverlay" >@null</item >
|
|
<item name = "android:windowNoTitle" >true</item >
|
|
|
|
<item name = "android:windowBackground" >@color/background</item >
|
|
</style >
|
|
|
|
<style name = "AppNormalTheme" parent = "@android:style/Theme.Holo.Light" >
|
|
<item name = "android:windowEnableSplitTouch" >false</item >
|
|
<item name = "android:splitMotionEvents" >false</item >
|
|
<item name = "android:windowContentOverlay" >@null</item >
|
|
<item name = "android:windowNoTitle" >true</item >
|
|
|
|
<item name = "android:windowBackground" >@color/background</item >
|
|
</style >
|
|
|
|
<style name = "AppGuideTheme" parent = "@android:style/Theme.Holo.Light" >
|
|
<item name = "android:windowBackground" >@android:color/transparent</item >
|
|
<item name = "android:windowIsTranslucent" >true</item >
|
|
<item name = "android:windowFullscreen" >true</item >
|
|
<item name = "android:windowNoTitle" >true</item >
|
|
</style >
|
|
|
|
<style name = "AppFullScreenTheme" parent = "@android:style/Theme.Holo.Light" >
|
|
<item name = "android:windowBackground" >@android:color/transparent</item >
|
|
<item name = "android:windowIsTranslucent" >true</item >
|
|
<item name = "android:windowActionBarOverlay" >true</item >
|
|
<item name = "android:colorBackgroundCacheHint" >@null</item >
|
|
<item name = "android:windowAnimationStyle" >@android:style/Animation</item >
|
|
<item name = "android:windowContentOverlay" >@null</item >
|
|
<item name = "android:windowFullscreen" >true</item >
|
|
</style >
|
|
|
|
<!-- 这个是加入的代码 -->
|
|
<style name = "mypopwindow_anim_style" >
|
|
<item name = "android:windowEnterAnimation" >@anim/popshow_anim</item >
|
|
<!-- 指定显示的动画xml -->
|
|
|
|
<item name = "android:windowExitAnimation" >@anim/pophidden_anim</item >
|
|
<!-- 指定消失的动画xml -->
|
|
</style >
|
|
|
|
//攻略页面 游戏选择动画
|
|
<style name = "scale_popwindow_anim_style" >
|
|
<item name = "android:windowEnterAnimation" >@anim/popshow_anim_scale</item >
|
|
<!-- 指定显示的动画xml -->
|
|
|
|
<!--<item name="android:windowExitAnimation">@anim/pophidden_anim_scale</item>-->
|
|
<!--<!– 指定消失的动画xml –>-->
|
|
</style >
|
|
|
|
<style name = "CheckboxStyle" parent = "@android:style/Widget.CompoundButton.CheckBox" >
|
|
<item name = "android:button" >@drawable/checkbox_style</item >
|
|
</style >
|
|
|
|
<style name = "KcCheckboxStyle" parent = "@android:style/Widget.CompoundButton.CheckBox" >
|
|
<item name = "android:button" >@drawable/kc_checkbox_style</item >
|
|
</style >
|
|
|
|
<!-- fresco xml配置-->
|
|
<style name = "frescoStyle" >
|
|
<item name = "placeholderImage" >@drawable/ocupy</item >
|
|
<item name = "placeholderImageScaleType" >fitXY</item >
|
|
<item name = "fadeDuration" >500</item >
|
|
<!--<item name="backgroundImage">@color/placeholder_bg</item>-->
|
|
</style >
|
|
|
|
</resources > |