Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

My app gives me this error when using this 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);
    }
};

The class for configure is here: http://pastebin.com/njMa9buE

and the complete error here: http://pastebin.com/REemSken

I have been looking over everything and cant for the life of me find whats wrong, everything is correctly defined in the manifest etc. Hoping fresh eyes will find the issue

share|improve this question
1  
Are all your Activities correctly defined in the Manifest file? – Martijn Van Mierloo Jul 12 '12 at 9:02
Post Logcat errors, I m sure the NPE is in Configure.class – user370305 Jul 12 '12 at 9:02
1  
have you declared configure class in manifest file – Ram kiran Jul 12 '12 at 9:02
Yes i already said its defined in the manifest, and the complete logcat of the error is here pastebin.com/REemSken – Zac Powell Jul 12 '12 at 9:04
Which one is Configure.java:59 code line? – user370305 Jul 12 '12 at 9:04
show 1 more comment

1 Answer

up vote 3 down vote accepted

You never initialize chk_RunVNC. It is null. You never assign anything to it. So this throws a NullPointerException in onCreate():

chk_RunVNC.setOnCheckedChangeListener(chk_RunVNC_OnCheckedChange);
share|improve this answer
Thank you!!! error fixed :) – Zac Powell Jul 12 '12 at 9:18

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.