MCheckBox mCheckBox1 = new MCheckBox();
// mCheckBox1.setText("again");
mCheckBox1.setImportant(true);
widgetList2.add(mCheckBox1);
MRadioButton androidRadioButton = new MRadioButton("os");
androidRadioButton.setText("Android");
widgetList2.add(androidRadioButton);
MRadioButton iOSRadioButton = new MRadioButton("os");
iOSRadioButton.setText("iOS");
widgetList2.add(iOSRadioButton);
container.add(widgetList2);
}