Hi I've been following an online example, but the site is down (typical). I'm having trouble with populating my array-list with the objects I created and I'm not sure if I missed something from the example.
the problem is my log produces a 0 size each time?
m_excersizes = new ArrayList<Excersize>();
Excersize e1 = new Excersize();
e1.setExcersizeOn("no 1");
e1.setExcersizeTitle("title 1");
Excersize e2 = new Excersize();
e2.setExcersizeOn("no 1");
e2.setExcersizeTitle("title 1");
Log.i("ARRAY", "This many: "+ m_excersizes.size());
cheers for any help.
Excersizeinto your list