2014-05-06 97 views
0

獲取設置樣式值有沒有辦法通過名字來獲得設置樣式,例如,如果我有字符串「文本」是有可能得到R.styleable.CustomView_Text值(按價值計算我的意思只是在R.styleable.CustomView數組索引,而不是屬性值)沒有反射?Android的 - 按名稱

<?xml version="1.0" encoding="utf-8"?> 
<resources> 

    <declare-styleable name="CustomView"> 

     <attr name="Text" format="string" /> 

    </declare-styleable> 

</resources> 

回答