闲谈 Android 中的 @ 和 (符号的引用区别)

人生难得几回搏,此时不搏待何时。这篇文章主要讲述闲谈 Android 中的 @ 和 ?符号的引用区别相关的知识,希望能为你提供帮助。
在 android 项目开发中,我们经常会用 “@” 或者 “?” 符号去引用系统或者我们应用内添加的资源,这两种符号的引用有什么区别呢,“?attr/” 与 “?android:attr/” 之间又有怎样的不同呢?本文我们不妨闲聊一下。
 
【闲谈 Android 中的 @ 和 (符号的引用区别)】“@” 与 “?” 符号的引用在使用时都有一个规范的格式:“@[+][package:]type:name”,“?[package:][type:]name”。可以看到,二者均包含引用符号、资源所属的包、资源类型和资源名称。
@ 资源引用“@” 符号用于引用系统和我们在项目中添加的一些固有资源(drawable,string 等),或者定义的 style 样式。比如:

1

android:text="@string/app_name"

这里的 app_name 就是我们自己定义在项目文件 values/strings.xml 中的字符串资源。
1

android:text="@android:string/cancel"

而这里的 cancel 属于 Android SDK 中的系统字符串资源,所以需要添加 @android: 来指明引用来源。android: 是 package: 的一个具体实例。
? 属性引用“?” 符号用于引用当前主题中定义的一些属性值。注意,“?” 符号通过属性名字间接引用当前主题中的对应属性值,而不是属性本身。举个例子:
1

android:divider="?android:listDivider"

这里的 “?” 符号通过属性名 android:listDivider 间接获取当前主题赋予该属性的值。如同 @android: 一般,?android: 表示该值源自 Android SDK 系统属性。由于在当前主题中寻找对应属性名的值,所以没有指定属性类型,其实等同于:?android:attr/listDivider。
那如何引用项目中自定义的属性呢?我们在 attrs.xml 中定义一个属性,如:
1
2
3

< declare-styleable name="CustomTextView">
< attr name="colorTextCustom" format="reference|color"/>
< /declare-styleable>

显然,此时我们定义的 colorTextCustom 属性是没有值的,直接引用没有任何作用。需要在主题 style 中赋值:
1
2
3
4
5
6
7

< style name="BaseTheme" parent="Theme.AppCompat.Light.NoActionBar">
< item name="colorTextCustom"> #FF0000< /item>
< /style>

< style name="AppTheme" parent="BaseTheme">
< item name="android:textColor"> ?colorTextCustom< /item>
< /style>

可以看到,这里在 BaseTheme 中对 colorTextCustom 属性赋值,并在 AppTheme 中通过 “?colorTextCustom” 引用该属性值。由于是本地项目中定义的属性,所以没有添加 android: 命名空间。其实,这种做法的好处是,AppTheme 所覆盖的 View 均可通过构造函数获取当前主题中的 colorTextCustom 属性值。
R.attr & R.styleAndroid SDK 中定义有很多属性和主题可供使用,详见官方文档:R.attr & R.style。使用系统资源的好处就是,满足不同系统的适配需求,较为灵活。
这里举几个常用的:
style=”?android:attr/borderlessButtonStyle”
Android 5.0 默认 Button 的样式自带边框阴影,可以使用这个系统样式去除该样式。当然,这是单独设置时的操作,为了方便全局控制,可以在 styles.xml 中自定义一个样式,继承一个无边框样式作为 parent:
1
2
3
4

< style name="CustomBorderlessButtonStyle" parent="@style/Widget.AppCompat.Button.Borderless">
< item name="android:textColor"> @android:color/white< /item>
...
< /style>

android:background=”?android:attr/selectableItemBackground”
可用于设置一些 List Item、Button之类带点击效果的背景。该样式自带触摸点击效果,在 5.0 和更高版本上,更是附有 Ripple 涟漪效果,省去我们自己实现 selector 选择器的过程。当然我们也可以自己使用 < ripple> 标签定义一个 drawable 文件实现涟漪效果,只是需要注意版本限制。这里举个例子,使用 < ripple> 标签创建一个类似 FloatingActionButton 样式的按钮(minSdkVersion 为 21):
新建 res/drawable/shape_ripple.xml 文件,构建类似 FAB 形状:
1
2
3
4
5

< ?xml version="1.0" encoding="utf-8"?>
< shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="oval">
< corners android:radius="48dp"/>
< solid android:color="@android:color/white" />
< /shape>

新建 res/drawable/ripple_fab.xml 文件,构建 ripple 触摸效果:
1
2
3
4

< ?xml version="1.0" encoding="utf-8"?>
< ripple android:color="@android:color/darker_gray" xmlns:android="http://schemas.android.com/apk/res/android">
< item android:drawable="@drawable/shape_fab"> < /item>
< /ripple>

应用在 layout 文件中的 Button 控件中:
1
2
3
4
5
6
7
8
9
10
11
12

< Button
android:layout_width="56dp"
android:layout_height="56dp"
android:minHeight="0dp"
android:minWidth="0dp"
android:text="+"
android:textSize="40sp"
android:gravity="center"
android:background="@drawable/ripple_fab"
app:elevation="1dp"
android:fontFamily="sans-serif-light"
android:layout_alignParentEnd="true"/>

基于这样的处理,最终运行时的效果如图:
闲谈 Android 中的 @ 和 (符号的引用区别)

文章图片

android:background=”?android:attr/dividerVertical”
实现分割线背景。
还有一些其他有用的系统资源,这里就不一一列举了…



























































    推荐阅读