Android Question LOA vs MinimaList

aeric

Expert
Licensed User
Longtime User

Which one is better?
My answer: Depends

LOA is list of arrays
MinimaList is list of maps

In LOA, you can convert between List and ListOfArrays.

In MinimaList, you cannot convert your List directly at the moment.
Each item as type of Maps is added to the internal list.
Instead of accessing the item using index, we access the items by id key in MinimaList.
If an item is removed, the item with that id will not be available similar to deleting a row from a database table with autoincrement id.
 
Top