【Android】attr、style和theme

简介:

一、Attr

属性,风格样式的最小单元;

Attr 的定义

在自定义 View 的时候,在 res/attrs.xml 文件中声明属性,而Android 系统的属性也是以同样的方式定义的。
比如 layout_width 属性对应到框架中的 attr 如下:

<declare-styleable name="ViewGroup_Layout">
    <attr name="layout_width" format="dimension"> <enum name="fill_parent" value="-1" /> <enum name="match_parent" value="-1" /> <enum name="wrap_content" value="-2" /> </attr> ... </declare-styleable>

attr 的 format 有以下几种格式,可以进行或运算:
color、reference、boolean、dimension、enum、flag、float、fraction、integer、string
这里着重说一下 enum 是枚举值,而 flag 可以进行或运算,属性值可以叠加使用,
reference 用在一些可以设置引用值的情况,引用 res 资源
fraction 是百分数的意思

二、Style

风格,它是一系列Attr的集合,用以定义一个View的样式;
style 是定义在 res/styles.xml 文件中的,在控件中使用时只需要style="@style/style_name"就可以使用样式了。
我们在自定义 View 时通过
·obtainStyledAttributes( AttributeSet set, @StyleableRes int[] attrs, @AttrRes int defStyleAttr, @StyleRes int defStyleRes)
方法获取自定义的 attr ,其中第一个参数表示是 xml 文件解析后得到的属性集合,attrs 是 View 声明的属性集,后两个用作指定默认的 Style,表示如果 set 中没有你想获得的属性,但如果你指定了默认 Style,它会去从该默认的 Style 里面找你想要的属性。defStyleAttr 和 defStyleRes 功能一样,指定的资源形式不同,前者表示一个默认的指向一个 style 风格的 attr 属性,而后者你可以直接传入一个 style 风格的 id。

三、Theme

主题,它与Style作用一样,都是一系列属性的集合,不同于Style作用于一个单独View,而它是作用于Activity上或是整个应用;与 Window 有关的属性作用于 Window,与 View 有关的属性作用于 Activity 的所有 View 或者整个应用的所有 View,如果想要改变 Window 的属性,那么继承相应 Theme,重写属性值,如果想要改变 View 相关样式,在 Theme 中重写属性作用于整个 Activity 或整个应用,或者定义 style 作用于单个 View。
Theme 的实质也是 Style,Theme 的定义格式与 Style 的基本一致,Theme 需要设置到 AndroidManifest.xml 的 或者 标签下,设置后,被设置的 Activity 或整个应用下所有的 View 都可以使用该

相关文章
|
7月前
|
Android开发 开发者
Android UI设计: 请解释Activity的Theme是什么,如何更改应用程序的主题?
Android UI设计: 请解释Activity的Theme是什么,如何更改应用程序的主题?
179 1
|
7月前
|
开发工具 Android开发 git
解决Android AAPT: error: resource android:attr/lStar not found. 问题
解决Android AAPT: error: resource android:attr/lStar not found. 问题
551 0
|
Android开发
Android系统自带样式(android:theme)解析
做Android开发时经常会修改系统默认的主题样式,在android的sdk  安装目录data\res\values\themes.
2453 0
|
6月前
|
Android开发 开发者
Android UI设计中,Theme定义了Activity的视觉风格,包括颜色、字体、窗口样式等,定义在`styles.xml`。
【6月更文挑战第26天】Android UI设计中,Theme定义了Activity的视觉风格,包括颜色、字体、窗口样式等,定义在`styles.xml`。要更改主题,首先在该文件中创建新主题,如`MyAppTheme`,覆盖所需属性。然后,在`AndroidManifest.xml`中应用主题至应用或特定Activity。运行时切换主题可通过重新设置并重启Activity实现,或使用`setTheme`和`recreate()`方法。这允许开发者定制界面并与品牌指南匹配,或提供多主题选项。
100 6
|
6月前
|
Android开发 开发者
Android UI中的Theme定义了Activity的视觉风格,包括颜色、字体、窗口样式等。要更改主题
【6月更文挑战第25天】Android UI中的Theme定义了Activity的视觉风格,包括颜色、字体、窗口样式等。要更改主题,首先在`styles.xml`中定义新主题,如`MyAppTheme`,然后在`AndroidManifest.xml`中设置`android:theme`。可应用于全局或特定Activity。运行时切换主题需重置Activity,如通过`setTheme()`和`recreate()`方法。这允许开发者定制界面以匹配品牌或用户偏好。
63 2
|
API Android开发 UED
|
Android开发
AAPT: error: resource android:attr/dialogCornerRadius not found.
AAPT: error: resource android:attr/dialogCornerRadius not found.
222 0
|
Android开发
AAPT: error: resource android:attr/lStar not found.
AAPT: error: resource android:attr/lStar not found.
1927 0
AAPT: error: resource android:attr/lStar not found.
|
Android开发
【错误记录】Android 应用运行报错 ( You need to use a Theme.AppCompat theme (or descendant) with this activity. )
【错误记录】Android 应用运行报错 ( You need to use a Theme.AppCompat theme (or descendant) with this activity. )
586 0
【错误记录】Android 应用运行报错 ( You need to use a Theme.AppCompat theme (or descendant) with this activity. )
|
Android开发
解决 error: style attribute '@android:attr/windowEnterAnimation' not found.
解决 error: style attribute '@android:attr/windowEnterAnimation' not found.
197 0