Hey guys!!
I really need your help!
I'm experiencing exactly the same problem as mentioned in the link below.
http://stackoverflow.com/questions/4898578/object-array-assignment-problem
The problem is, I don't know how to apply the solution they provide.
I really need your help!
I'm experiencing exactly the same problem as mentioned in the link below.
http://stackoverflow.com/questions/4898578/object-array-assignment-problem
The problem is, I don't know how to apply the solution they provide.
There is no static keyword in B4X, right? Can this be solved with Reflection / JavaObject?It's because your variables are static i.e. they belong to the class, rather than to an instance. Take a look at Java Tutorials | Understanding Instance and Class Members for more information about what this means.
You should remove the static keyword, so that they become instance variables.