Does anyone know how to perform or have a good reference for doing an activity layout at runtime in android?
Here is the code for my activity. I\'m sure I\'m just ne
You forgot to set your contentView. You should add
setContentView(layout);
At the end of the onCreate method
onCreate