What is the Android equivalent to the C# List<T>?
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