java.lang.RuntimeException:无法启动活动ComponentInfo:java.lang.NullPointerException

时间:2012-07-12 09:01:32

标签: android

使用此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

我一直在寻找一切,不能为我的生活找到错误,一切都在清单中正确定义等。 希望新鲜的眼睛能找到问题

1 个答案:

答案 0 :(得分:3)

您永远不会初始化chk_RunVNC。它是null。你永远不会给它任何东西。因此,这会在NullPointerException中引发onCreate()

chk_RunVNC.setOnCheckedChangeListener(chk_RunVNC_OnCheckedChange);