我正在开发一个 Android 应用程序。我需要将字符串数组转换为 ArrayList。我已经阅读了这一点,并且都有将值添加到 java 文件中的数组的情况。我已经在 strings.xml 文件中声明了字符串数组。我的字符串数组在这里:
<string-array name="Lines">
<item>Red Line</item>
<item>Blue Line</item>
<item>Orange Line</item>
<item>Green Line</item>
<item>Brown Line</item>
<item>Purple Line</item>
<item>Pink Line</item>
<item>Yellow Line</item>
</string-array>
我需要将 Lines 转换为 ArrayList。如果我用这个
List<String> Lines = new ArrayList<String>();
要声明 ArrayList,如何通过 ID 找到数组列表,并将其存储为 Lines?