I'm sure that this is some basic misunderstanding on my part, but ...
I want to have a class:
public class Foo {
String bar;
}
And the declare a two dimensional array of them:
Foo[][] foobar = new Foo[3][3];
Which works fine, but when I get to that point and look at foobar, each element is null. Now I can initialize each element at this point, but this just seems wrong. I don't know if I need to have some special constructor in my class or what.
I'm new to Android and Java, so any help would be appreciated.
Dan