How do I change something like this:
CharSequence cs[] = { \"foo\", \"bar\" };
to:
CharSequence cs[]; cs.add(\"foo\"); //
You could use ArrayList instead of raw arrays since need to add items dynamically.