Hi,
I am new to android and want to convert this string
textView.setText(myVar);
Here
[HIGH]
myVar = 12,15,47,22;
[/HIGH]
I need to convert the above string to the following string,
[HIGH]
int[] xAxis = new int[{12,15,47,22}];
[/HIGH]
Please help, thanks.