使用此onclicklistener时,我的应用程序给出了这个错误
private OnClickListener btn_Config_Onclick = new OnClickListener() {
public void onClick(View v) {
Bundle bundle = new Bundle();
bundle.putString("Name", selected_Name);
bundle.putString("Image", selected_Image);
Intent intent = new Intent(v.getContext(), Configure.class);
intent.putExtras(bundle);
v.getContext().startActivity(intent);
}
};
配置类位于:http://pastebin.com/njMa9buE
以及此处的完整错误:http://pastebin.com/REemSken
我一直在寻找一切,不能为我的生活找到错误,一切都在清单中正确定义等。 希望新鲜的眼睛能找到问题
答案 0 :(得分:3)
您永远不会初始化chk_RunVNC
。它是null
。你永远不会给它任何东西。因此,这会在NullPointerException
中引发onCreate()
:
chk_RunVNC.setOnCheckedChangeListener(chk_RunVNC_OnCheckedChange);