This is part of my string.xml file on an application that I'm trying to create:
<array name="users">
<item>
<user_name>u1</user_name>
<password>p1</password>
<email>aaa@aaa</email>
</item>
<item>
<user_name>u2</user_name>
<password>p2</password>
<email>bbb@bbb</email>
</item>
<item>
<user_name>u3</user_name>
<password>p3</password>
<email>ccc@ccc</email>
</item>
</array>
I have a problem reading the "users" two-dimensional array into a two-dimensional array on the java file. I've already created a class name "User" for the array. I'm quite stuck here. Can anybody give me a hand? Thanks