I tried a few changes and they did not correct the problem. I reviewed my constructor and realized I had set the constructor as:
Layout tl = new TableLayout(3, 1);
I changed the constructor to:
TableLayout tl = new TableLayout(3, 1);
This corrected the "cannot find symbol" error. Always check your constructors.