First: you try to set the text using the class nameCheckBox
it must be an instance CheckBox, for example:
CheckBox checkBox = new CheckBox(activity);
checkBox.setText("Hello");
Second:
You tried to add checkBox to your Activity Content , how is it?
this.setContentView(checkBox);
EDIT: : the this , maybe it will help you
source
share