I have code:
public class HelloWorld extends Activity { private Button buttonOk; private Button buttonCancel; private OnClickListener buttonOkListener = ne
I'm not 100% sure but you are calling the findviewbyid's in the class initialisation. I think this code is called before the onCreate method so the view's cannot be found. Initializing the listeners in the oncreate method should work.