在写values/styles.xml时有时会有些疑惑,何时要用@符号,何时不用,何时用android:,何时不用,如何区分呢?
何时要用@符号,何时不用
<style name="LiveDialogStyle">
<item name="android:windowBackground">@android:color/transparent</item>
<item name="android:windowNoTitle">true</item>
<item name="android:windowFullscreen">true</item>
<item name="android:windowIsTranslucent">true</item>
<item name="android:windowAnimationStyle">@style/dialogWindowAnim</item>
</style>
@是引用的意思,如果attrs中定义了该属性的format是reference,那么就必须用@。比如windowBackground,它的定义在哪呢?
我们可以看到,是在系统的attrs文件里面定义的,format为reference,所以它的值需要用@符号,引用一个资源。
何时用android:,何时不用
<style name="TransTheme" parent="AppTheme">
<item name="colorPrimary">@color/transparent</item>
<item name="colorPrimaryDark">@color/transparent</item>
<item name="colorAccent">@color/transparent</item>
</style>
凡是只有android sdk里面有的(比如windowAnimationStyle,
定义只存在于E:\android-sdk6.0\platforms\android-23\data\res\values\attrs.xml中,其实上面列的其它几个属性也类似),那就必须用android:这个命名空间。
而如果是像colorPrimary这样的属性(
app\build\intermediates\exploded-aar\com.android.support\appcompat-v7\23.3.0\res\values\values.xml里面就有,而通常v7包会作为当前工程的应用包,引用过来,所有像colorPrimary属性,可以认为是存在与当前工程,而不是android系统定义的),那就不用加android:了