如何在styles.xml中使用控件自定义属性

开发过程中,对于通用控件的属性我们习惯在styles.xml中抽取出来,然后在用到的地方通过:

style="@style/Your.Style"
引入,可以简化代码。
在Material Design风格的app里面大量使用到CarView,但是CardView的某些属性在style中默认是不支持的,:
上面这部分代码中: cardBackgroundColor 和 cardCornerRadius  编译会报错。
  

让CardView.Style 继承 CardView 可以解决此问题
参考:http://stackoverflow.com/questions/27341832/how-to-put-a-cardview-attribute-in-a-style

你可能感兴趣的:(如何在styles.xml中使用控件自定义属性)