Q:

string array to arraylist android

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

New to Communities?

Join the community