I\'m developing an Android app. I need to convert a string array into an ArrayList. I\'ve read up on this, and all have cases where you add the values to the array in the ja
In strings.xml, add string array
Home Settings
In your .java class access the string array like
List tags = Arrays.asList(getResources().getStringArray(R.array.dashboard_tags));