Android 创建自定义 View 的属性 (attrs) 时需要注意的问题

临文乍了了,彻卷兀若无。这篇文章主要讲述Android 创建自定义 View 的属性 (attrs) 时需要注意的问题相关的知识,希望能为你提供帮助。
自定义 View 的属性并不难,可以参照官方的文档
https://developer.android.com/training/custom-views/create-view.html
 
但是需要注意一个问题,否则可能浪费很多时间。

< resources> < declare-styleable name="AppsControllerBlock"> < attr name="letterCase" format="enum"> < enum name="defaultCase" value="https://www.songbingjia.com/android/0" /> < enum name="upperCase" value="https://www.songbingjia.com/android/1" /> < enum name="lowerCase" value="https://www.songbingjia.com/android/2" /> < /attr> < /declare-styleable> < /resources>

参数的名字不可以与保留字相同。比如不能叫 case,return,default。
否则会在编译时报错,processReleaseResources faild ...
【Android 创建自定义 View 的属性 (attrs) 时需要注意的问题】 

    推荐阅读