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'm new to android developement in general, but i already got the basic. I want to use the facebook SDK to create an android app, although i have not found a reliable source of information on what methods or classes to use. I tried to follow the android tutorial on facebook developers, but i am stuck at the step where i am supposed to build and run the project:

Step 6.4: Build and run the project
Build and run the 'MyGreatApp' project. This should launch in the same emulator where you install the Facebook.apk. You will be prompted with the user authorization dialog (You may have to login to the Facebook app if not already done so):

but the code provided seems to have errors in these lines:

facebook.authorize(this, new DialogListener(){

            @Override
            public void onComplete(Bundle values) {
                // TODO Auto-generated method stub

            }

it says: -The method authorize from the type facebook refers to the missing type activity.

-The type new Facebook.DialogListener(){} must implement the inherited abstract method Facebook.DialogListener.onComplete(Bundle)

@Override
            public void onComplete(Bundle values) {
                // TODO Auto-generated method stub

            }

-The method onComplete(Bundle) of type new Facebook.DialogListener(){} must override or implement a supertype method

@Override
    public void onActivityResult(int requestCode, int resultCode, Intent data) {
        super.onActivityResult(requestCode, resultCode, data);

        facebook.authorizeCallback(requestCode, resultCode, data);
    }

-The method authorizeCallback(int, int, Intent) from the type Facebook refers to the missing type Intent

share|improve this question

1 Answer

up vote 4 down vote accepted

dude goto this link https://github.com/facebook/facebook-android-sdk/tree/master/examples/Hackbook/src/com/facebook/android it provides whole coding of FB for android

share|improve this answer
thanks @Slacker616 – Rstar Feb 22 '12 at 3:54

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.