I'm following the Facebook Android SDK tutorial and I have all of the code leading up to this step in my app. I start the app (testing it on my phone, but does the same in Emulator) and this screen comes up:

Ok, great!
But, once it's done loading, instead of any sort of log-in screen coming up like the example given here:

I just come up with this:

Code:
package com.greatapp;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import com.facebook.android.*;
import com.facebook.android.Facebook.*;
public class MyGreatActivity extends Activity {
Facebook facebook = new Facebook("MY_APP_ID");
@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);
}
}
Ok, I deleted the project and started again. This screen from before is doing something, but keeps reloading this loading screen over and over and over again. Almost like it's contacting Facebook's servers for 1000 different things and each one has a loading screen. I don't know what to do. No errors in Logcat.
