有没有办法按名称获取样式,例如,如果我有字符串“文本”,是否可以在没有反射的情况下获取R.styleable.CustomView_Text
值(我的意思是R.styleable.CustomView
数组中的索引,而不是属性值)?
<?xml version="1.0" encoding="utf-8"?>
<resources>
<declare-styleable name="CustomView">
<attr name="Text" format="string" />
</declare-styleable>
</resources>