android 中theme.xml与style.xml的区别

Posted JonsonWei

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android 中theme.xml与style.xml的区别相关的知识,希望对你有一定的参考价值。

android 中theme.xml与style.xml的区别:

相同点:

两者的定义相同。

  1. <resources>
  2. <style name="theme" parent="android:Theme.Black">
  3. <item name="android:windowNoTitle">true< /item>
  4. <item name="android:textSize">14sp< /item>
  5. <item name="android:textColor">#FFFF0000< /item>
  6. < /style>
  7. < /resources>

不同点:

一、使用的地方不同

        1. theme.xml:对整个应用或某个Activity存在全局性影响。

                    AndroidManifest.xml中:

                    <application android:theme="@android:style/theme">,

                    <activity android:theme="@android:style/theme">,

                   application 和  activity  java中:setTheme(R.style.theme);  

 

         2. style.xml:用在单独的View。

                 <EditText android:layout_height="wrap_content"

                   android:text="EditText"

                   style="@style/Title"

                   android:layout_width="fill_parent"

                   android:id="@+id/editText1"></EditText>

二、 在R.attr定义中以window开头的一些属性只对theme有效。

三、如果一个应用使用了theme,同时应用下的view也使用了style,那么当theme与样式style发生冲突时,style的优先级高于主题。

以上是关于android 中theme.xml与style.xml的区别的主要内容,如果未能解决你的问题,请参考以下文章

Android中theme.xml与style.xml的区别

styles.xml 和 theme.xml 有啥区别

如何使用自定义主题更改默认文本颜色?

Android v21 Theme.Appcompat 颜色重音被忽略,对话框上没有填充

xml 没有人,gedit中,theme.xml

Magento 2 Theme Ultimate Guide - 如何创建Magento 2主题终极指南