支持自定义样式的preLollipop设备

时间:2015-09-02 11:26:45

标签: android styles

我在Android中使用自定义样式,我想知道是否可以在preLollipop设备中支持此样式。

现在,我在values文件夹中有这个.xml,而且我使用的是Android Studio。

任何建议?

由于

<resources xmlns:tools="http://schemas.android.com/tools">

    <style name="GradiantTheme" parent="android:Theme.DeviceDefault.Light.NoActionBar">

        <!-- App background color -->
        <item name="android:windowBackground">@color/theme_background</item>

        <!--Transparent status bar-->
        <item name="android:windowTranslucentStatus" tools:targetApi="kitkat">true</item>


        <!--   texts -->
        <item name="android:textColor" tools:targetApi="lollipop">@color/gradiant</item>


        <!--   theme UI controls like checkboxes and text fields -->
        <item name="android:colorAccent" tools:targetApi="lollipop">@color/gradiant</item>


    </style>




</resources>

2 个答案:

答案 0 :(得分:0)

对于旧版本,请检查项目中的两个文件夹:     的值-V11:     

    <!--
        Base application theme for API 11+. This theme completely replaces
        AppBaseTheme from res/values/styles.xml on API 11+ devices.
    -->
    <style name="AppBaseTheme" parent="Theme.AppCompat.Light">
        <!-- API 11 theme customizations can go here. -->
    </style>

</resources>

<强>值-V14:

<resources>

    <!--
        Base application theme for API 14+. This theme completely replaces
        AppBaseTheme from BOTH res/values/styles.xml and
        res/values-v11/styles.xml on API 14+ devices.
    -->
    <style name="AppBaseTheme" parent="Theme.AppCompat.Light.DarkActionBar">
        <!-- API 14 theme customizations can go here. -->
    </style>

</resources>

答案 1 :(得分:-1)

您的默认值文件夹将仅适用于棒棒糖前设备。如果您创建一个values-v21文件夹,那么其中的样式将专门用于支持棒棒糖版本的设备。例如,您可以将棒棒糖过渡效果放在values-v21文件夹的样式xml中,因为它仅受棒棒糖支持。 如果您只想更改前棒棒糖设备的样式,那么只需在您的样式xml中进行更改,该样式位于默认值文件夹中。 希望以上描述有所帮助。