通用排除法,最终确定了问题所在:
<declare-styleable name="ToggleButton"> <attr name="onColor" format="color" /> <attr name="offColor" format="color" /> <attr name="btnWidth" format="integer" /> <attr name="btnHeight" format="integer" /> <!-- 问题出在这个属性,添加上之后就报错 <attr name="circleRadius" format="integer" /> -->
<!-- 改个属性名称后才正常-->
<attr name="circleRadiusMe" format="integer" />
</declare-styleable>
太无语了,完全不懂是什么问题。