java.lang.RuntimeException: Field: length not found in: java.util.ArrayList
I just tried to loop through an ArrayList.
I'm going to investigate how to access it.
Edit, solved it this way:
B4X:
Dim Obj As JavaObject = ...
Obj.RunMethod("getStringArrayList", ...)
For i = 0 To Obj.RunMethod("size", Array As Object()) - 1
Log(Obj.RunMethod("get", Array As Object(i)))
Next