Hi,
In simple way we can do like this for converting
string to array
public static int[] strngToArr(String str)
{
int length = str.length();
int[] array = new int[length];
for (int i = 0; i < length; i++)
{
array[i] = Integer.parseInt(str.substring(i,i+1));
}
return array;
}
But in Android we have a separate file for string objects, where all string objects are stored.
For that you need to parse xml objects one by one then convert it into array.
I will try and get back to you.
Thanks
Atul Itankar
InfoCepts | www.infocepts.com