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.

i am getting

java.lang.RuntimeException: Unable to start activity ComponentInfo{com.fb.test/com.fb.test.Fb_testActivity}: android.content.res.Resources$NotFoundException: Resource ID #0x7f020005 error

i am just putting following code by creating android project

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import com.facebook.android.*;
import com.facebook.android.Facebook.*;

public class Fb_testActivity extends Activity {    
Facebook facebook = new Facebook("318494558191146");

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

    facebook.authorize(this, new DialogListener() {
        @Override
        public void onComplete(Bundle values) {}
        @Override
        public void onFacebookError(FacebookError error) {}
        @Override
        public void onError(DialogError e) {}
        @Override
        public void onCancel() {}
    });
}

@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
    super.onActivityResult(requestCode, resultCode, data);
    facebook.authorizeCallback(requestCode, resultCode, data);
}}
share|improve this question
Can you post your stack trace? Try cleaning your project and running the app once. – silverback Jan 23 at 4:54

2 Answers

up vote 1 down vote accepted

Check if R.layout.main exists or not.

share|improve this answer
main.xml , string.xml all files are available – ronakmehta Feb 4 '12 at 9:10
have you copied all resources from sdk to your project resources – jeet Feb 4 '12 at 10:19
here i have importd whole android-sdk as library into project so i didnt made any changes – ronakmehta Feb 4 '12 at 12:16

Maybe because your application supports multiples languages, and some strings are missing in one of the strings.xml files ?

share|improve this answer

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.