What is the difference between style and android:theme attributes?

前端 未结 1 641
谎友^
谎友^ 2020-12-11 14:47

What are the key differences between android:theme and style attributes used for views like buttons and textviews in andr

相关标签:
1条回答
  • 2020-12-11 15:30

    There are two key differences:

    First, attributes assigned to a view via style will apply only to that view, while attributes assigned to it via android:theme will apply to that view as well as all of its children. For example, consider this style resource:

    <style name="my_background">
        <item name="android:background">@drawable/gradient</item>
    </style>
    

    If we apply it to a LinearLayout with three child TextViews by using style="@style/my_background", then the linearlayout will draw with a gradient background, but the backgrounds of the textviews will be unchanged.

    If instead we apply it to the LinearLayout using android:theme="@style/my_background" then the linearlayout and each of the three textviews will all use the gradient for their background.

    The second key difference is that some attributes only affect views if they are defined in that view's theme. For example, consider this style resource:

    <style name="checkboxes">
        <item name="colorAccent">#caf</item>
        <item name="colorControlNormal">#caf</item>
    </style>
    

    If I apply this to a CheckBox using style="@style/checkboxes", nothing will happen. If instead I apply it using android:theme="@style/checkboxes", the color of the checkbox will change.

    Just like the first rule said, styles containing theme attributes will apply to all children of the view with the android:theme attribute. So I can change the color of all checkboxes in a linearlayout by applying android:theme="@style/checkboxes" to my linearlayout.

    0 讨论(0)
提交回复
热议问题