I am using an array like this:
int selIntIndex = Integer.valueOf(selStringIndex);
int[][] PreIntVal = new int[][]
{
{ selIntIndex,
2 },
{
selIntIndex,
3 },
{
selIntIndex,
1 } };
PreIntVal[3][0] = PreIntVal[4][0] = 3;
android.util.Log.d("StripedLog",
Arrays.toString(Values.PreStringVal[3]));
But somehow the code never reaches the "log" statement. The problem is with this line: PreIntVal[3][0] = PreIntVal[4][0] = 3; because if I comment it out, it works.
Any suggestions?
