我在 strings.xml 中有一个字符串数组,详细如下:
<string-array name="spinerArray">
<item name="one">First</item>
<item name="two">Second</item>
<item name="three">Third</item>
<item name="four">Fourth</item>
</string-array>
我需要检索其中一项名称而不是值(一、二、三、四)。到目前为止,我知道可以使用 getResourceEntryName 获取数组的名称,例如:
getResources().getResourceEntryName(R.array.spinerArray);
有没有办法获得项目名称?
谢谢。