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 have implemented the new Facebook api into my application.

When I press the login button I get the
Unable to resolve com_facebook_login_activity_layout
error resulted from: session.openForRead(new Session.OpenRequest(SaverrActivity.this).setCallback(callback));

Obviously I am doing something wrong, which I spent the past hours trying to find.
I need bright ideas?

    uiHelper = new UiLifecycleHelper(this, callback);
    uiHelper.onCreate(savedInstanceState);

    ImageButton loginButton = (ImageButton) this.findViewById(R.id.fb_login_button);
    loginButton.setOnClickListener(new OnClickListener()
    {

        @Override
        public void onClick(View paramView)
        {
             Session session = Session.getActiveSession();
                if (!session.isOpened() && !session.isClosed()) {
                    session.openForRead(new Session.OpenRequest(SaverrActivity.this).setCallback(callback));
                } else {
                    Session.openActiveSession(SaverrActivity.this, true, callback);
                }
        }
    });
share|improve this question
1  
How are you including the Facebook SDK in your app? The SDK comes with resource and layout files (one of which is com_facebook_login_activity_layout.xml), and it seems like those files are not included in your app. – Ming Li Jan 2 at 17:35

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.