string array to arraylist android code example

Example 1: string array to arraylist android

String [] strings = new String [] {"1", "2" };
List stringList = new ArrayList(Arrays.asList(strings)); //new ArrayList is only needed if you absolutely need an ArrayList

Example 2: string array to arraylist

String [] strings = new String [] {"1", "2" };
List stringList = new ArrayList(Arrays.asList(strings)); //new ArrayList is only needed if you absolutely need an ArrayList

Example 3: java string array to arraylist

new ArrayList( Arrays.asList( new String[]{"abc", "def"} ) );

Tags:

Misc Example