Android Question Set array from List element

Macos

New Member
Hi, my problem is that the program saves arrays in a list like that:

B4X:
        Arr(0) = EditText1.Text
        Arr(1) = EditText2.Text
        Arr(2) = EditText3.Text
        Arr(3) = EditText4.Text
        List.Add(Arr)

But i need to read these arrays too.
And i don't know the solution for the reading. I tried that:

B4X:
        Arr2 = List1.Get(1)

But it didn't work.
Any idea?
Thanks to all.
 
Top