码迷,mamicode.com
首页 > 移动开发 > 详细

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

时间:2014-05-05 11:11:12      阅读:407      评论:0      收藏:0      [点我收藏+]

标签:android   style   blog   class   java   ext   

from://http://liangoogle.iteye.com/blog/1848448

 

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

相同点:

两者的定义相同。

  1. <resources>
  2. <stylename="theme"parent="android:Theme.Black">
  3. <itemname="android:windowNoTitle">true< /item>
  4. <itemname="android:textSize">14sp< /item>
  5. <itemname="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的区别,布布扣,bubuko.com

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

标签:android   style   blog   class   java   ext   

原文地址:http://www.cnblogs.com/wanqieddy/p/3706203.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!