Bug? List initialization

DonManfred

Expert
Licensed User
Longtime User
Does not work says exact NOTHING. Which error you get?
Why you want to clear a list which you explicit initialized to HAVE entry´s...
 

eps

Expert
Licensed User
Longtime User
http://www.b4x.com/android/forum/threads/bug-with-list-initialize2.31006/

"
Initializes a list with the given values. This method should be used to convert arrays to lists.
Note that if you pass a list to this method then both objects will share the same list,
and if you pass an array the list will be of a fixed size. Meaning that you cannot later add or remove items.
"
 

LucaMs

Expert
Licensed User
Longtime User
http://www.b4x.com/android/forum/threads/bug-with-list-initialize2.31006/

"
Initializes a list with the given values. This method should be used to convert arrays to lists.
Note that if you pass a list to this method then both objects will share the same list,
and if you pass an array the list will be of a fixed size. Meaning that you cannot later add or remove items.
"


I was trying to pass list as a parameter to a function and change the content of it, inside the function.

But no matter, I initialize it with the normal method
 
Top