Android List<T> equivalent
What is the Android equivalent to the C# List<T>
?开发者_StackOverflow中文版
I have seen that java has List<T>
in java.util but I can only seem to find the interface definition in Android 2.3.3?
Fundamentally I am looking for a generic collection that supports iteration, sort and index based access?
You can use ArrayList. Android ArrayList
精彩评论