How to convert array to Array list in android ?
Answers
Answered by
0
Explanation:
The most popular and the accepted answer is the following: ArrayList<Element> arrayList = new ArrayList<Element>(Arrays. asList(array)); ArrayList<Element> arrayList = new ArrayList<Element>(Arrays)
Similar questions