标签: android android-custom-view android-resources
我需要在自定义视图中获取字符串属性名称。
我的自定义视图扩展了TextView,在构造函数中我需要以某种方式获得android:text值。不只是字符串资源值,而是名称。
TextView
android:text
例如,我需要得到&#34;出现&#34;来自<string name="appear">Some text</string>。
<string name="appear">Some text</string>
有什么想法吗?
答案 0 :(得分:3)
刚刚发现,这对我有用 getResources().getResourceName(int resid);
getResources().getResourceName(int resid);