android get element in list by index

www.l‮ua‬tturi.com
android get element in list by index
ArrayList<String> list = ...
String item = list.get(index); 
String item = list.get(5);  // get the sixth element of the list
Created Time:2017-08-30 20:43:23  Author:lautturi