android自定义控件添加自定义属性
1、 如果是自定义控件,请在style.xml中或attrs.xml中声明属性:
<declare-styleable name="SunnyAttr">
<attr name="sunnyTextColor" format="reference"/>
<attr name="sunnyBgColor" format="reference"/>
<attr name="sunnyTextColorWhite" format="color"/>
<attr name="sunnyTextColorRed" format="reference"/>
<attr name="textColor" format="reference"></attr>
</declare-styleable>
如代码第五行所示,必须指明format为reference。这样自定义控件的属性就可以在xml使用,如果不明白,查看这里
2、 在Theme中使用自定义的属性,可以再多个主题中定义不同的属性值
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="sunnyTextColorRed">@color/sunnyTextColorRed</item>
</style>
3、 在对应的属性color,drawable等里面加入相应的资源
<color name="sunnyTextColorRed">#FFFF0000</color>
4、这样就可以在xml中使用自定义控件的自定义属性,这个属性会随着主题而改变:
见下面第五行代码
<com.smartbracelet.sunny.sunnydemo3.SunnyTextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:text="设置界面"
app:sunnyTextColor="?attr/sunnyTextColorRed"
/>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~