Android: 有没有办法获取字符串属性名?

Android: Is there a way to get string attribute name?

我需要在自定义视图中获取字符串属性名称。

我的自定义视图扩展了 TextView 并且在构造函数中我需要以某种方式获得 android:text 值。不仅仅是字符串资源值,还有名称。

例如,我需要从 <string name="appear">Some text</string> 得到 "appear"。

有什么想法吗?

刚刚发现,这对我有用。
getResources().getResourceName(int resid);