所以我有这个static
方法构建一个RadioButton:
public static RadioButton createARadioButton()
{
RadioButton radioButton = new RadioButton(null);
return radioButton;
}
我有这个作业声明:
radioButton = createARadioButton();
这给了我一个NullPointerExeption。
现在我如何编写一个静态方法来创建一个表现良好的RadioButton? 我在这里做错了什么?
答案 0 :(得分:1)
您无法为RadioButton
传入空的Context参数。至少你需要这样的东西:
public static RadioButton createARadioButton(Context context)
{
RadioButton radioButton = new RadioButton(context);
return radioButton;
}