Facebook Activity 无法在 facebook-sdk 4.4.0 中正确加载

Facebook Activity not loading correctly in facebook-sdk 4.4.0

我想在我的 android 应用程序中集成 Facebook 登录。我正在使用 Facebook-sdk-4.4.0。使用 LoginManager class 方法。但是我在 运行 以下代码上遇到问题-

FacebookSdk.sdkInitialize(getApplicationContext());    
callbackmanager = CallbackManager.Factory.create();

// Set permissions
LoginManager.getInstance().logInWithReadPermissions((Activity)getContext(), Arrays.asList("email", "public_profile"));

LoginManager.getInstance().registerCallback(callbackmanager,
        new FacebookCallback<LoginResult>() {
            @Override
            public void onSuccess(LoginResult loginResult) {

                GraphRequest request = GraphRequest.newMeRequest(
                        loginResult.getAccessToken(),
                        new GraphRequest.GraphJSONObjectCallback() {
                            @Override
                            public void onCompleted(JSONObject userInfo, GraphResponse graphResponse) {
                                try {
                                    FacebookClientController.setUserId(userInfo.optString(ID));
                                    FacebookClientController.setDisplayName(userInfo.optString(NAME));
                                    FacebookClientController.setEmailAddress(userInfo.optString(EMAIL));
                                    JSONObject picJson = userInfo.getJSONObject(PICTURE).getJSONObject("data");
                                    FacebookClientController.setProfilePicUrl(picJson.optString("url"));
                                    Log.d(LOGTAG, "\nUsername :" + FacebookClientController.getDisplayName());
                                    Log.d(LOGTAG, "\nEmail :" + FacebookClientController.getEmailAddress());
                                    Log.d(LOGTAG, "\nUserId :" + FacebookClientController.getUserId());
                                    Log.d(LOGTAG, "\nProfilePicUrl :" + FacebookClientController.getProfilePicUrl());
                                } catch (JSONException e) {
                                    Log.d(LOGTAG, "Json Error");
                                }
                            }
                        }
                );
                Bundle parameters = new Bundle();
                parameters.putString(FIELDS, FB_REQUEST_FIELDS);
                request.setParameters(parameters);
                GraphRequest.executeBatchAsync(request);

                Toast.makeText(getContext(), "Login successful" + loginResult.toString(), Toast.LENGTH_SHORT).show();
            }

            @Override
            public void onCancel() {
                Log.d(LOGTAG, "On cancel");
            }

            @Override
            public void onError(FacebookException error) {
                Log.d(LOGTAG, error.toString());
            }
        });
}

我在我的应用程序中看到的是左侧屏幕,而不是右侧屏幕,后者应该出现在 运行 上面的代码中。谁能告诉我问题出在哪里? Logcat:

--------- beginning of /dev/log/main

I/AppHost.Android(10873): Registered listener for handling onActivityResult: com.example.office.docsui.common.SignInController

--------- beginning of /dev/log/system

I/ActivityManager( 449): START u0 {act=NATIVE_WITH_FALLBACK cmp=com.example.office.powerworld/com.facebook.FacebookActivity (has extras)} from pid 10873

I/TelemetryLifeCycleState(10873): Activity Pause Start. Activity:1099625720,PPTActivity, AppState=3

I/ActivityManager( 449): START u0 {act=NATIVE_WITH_FALLBACK cmp=com.example.office.powerworld/com.facebook.FacebookActivity (has extras)} from pid 10873

I/TelemetryLifeCycleState(10873): Activity Pause End. Activity:1099625720,PPTActivity, AppState=2

I/TelemetryLifeCycleState(10873): Activity Created. Activity:1107534680,com.facebook.FacebookActivity

I/AppHost.Android(10873): onActivityStarted, foregroundActivityCount=1, mEventsEnabled= true, mResumeEnabled=false

I/AppHost.Android(10873): this is not an office activity::com.facebook.FacebookActivity

I/TelemetryLifeCycleState(10873): Activity Resume Start. Activity:1107534680,com.facebook.FacebookActivity, AppState=2

I/TelemetryLifeCycleState(10873): Activity Resume End. Activity:1107534680,com.facebook.FacebookActivity, AppState=3, suspensionTime=54215

I/TelemetryLifeCycleState(10873): Activity Pause Start. Activity:1107534680,com.facebook.FacebookActivity, AppState=3

I/TelemetryLifeCycleState(10873): Activity Pause End. Activity:1107534680,com.facebook.FacebookActivity, AppState=2

I/TelemetryLifeCycleState(10873): Activity Created. Activity:1107673504,com.facebook.FacebookActivity

D/dalvikvm(10873): GC_FOR_ALLOC freed 2064K, 20% free 8974K/11096K, paused 27ms, total 30ms

I/AppHost.Android(10873): onActivityStarted, foregroundActivityCount=1, mEventsEnabled= true, mResumeEnabled=false

I/AppHost.Android(10873): this is not an office activity::com.facebook.FacebookActivity

I/TelemetryLifeCycleState(10873): Activity Resume Start. Activity:1107673504,com.facebook.FacebookActivity, AppState=2

I/TelemetryLifeCycleState(10873): Activity Resume End. Activity:1107673504,com.facebook.FacebookActivity, AppState=3, suspensionTime=54303

D/mali_winsys(10873): new_window_surface returns 0x3000

D/mali_winsys(10873): new_window_surface returns 0x3000

D/mali_winsys(10873): new_window_surface returns 0x3000

D/mali_winsys(10873): new_window_surface returns 0x3000

I/Keyboard.Facilitator( 614): onFinishInput()

I/ActivityManager( 449): Displayed com.example.office.powerworld/com.facebook.FacebookActivity: +346ms

I/ActivityManager( 449): Displayed com.example.office.powerworld/com.facebook.FacebookActivity: +346ms

D/mali_winsys(10873): new_window_surface returns 0x3000

D/mali_winsys(10873): new_window_surface returns 0x3000

I/K2_ULS (10873): 07/21/2015 17:24:38.293 PPTDROID (0x2a79) 0x40066154 Example powerworld AppHost PLM a2k0b Medium PauseHandlerActivityLifecycleCallbacks:onActivitySaveInstanceState called

I/Keyboard.Facilitator( 614): onFinishInput()

W/InputMethodManagerService( 449): Window already focused, ignoring focus gain of: com.android.internal.view.IInputMethodClient$Stub$Proxy@4227f090 attribute=android.view.inputmethod.EditorInfo@423ba3a8, token = android.os.BinderProxy@41f633d8

试试这个

LoginButton loginButton;
CallbackManager callbackManager;

FacebookSdk.sdkInitialize(getApplicationContext());
callbackManager = CallbackManager.Factory.create();

loginButton = (LoginButton) findViewById(R.id.login_button);
    loginButton.setReadPermissions(Arrays.asList("public_profile", "user_friends", "email"));

    loginButton.registerCallback(callbackManager, new FacebookCallback<LoginResult>() {
        @Override
        public void onSuccess(LoginResult loginResult) {

            Profile profile = Profile.getCurrentProfile();
            profile.getProfilePictureUri(315, 315);
            GraphRequest request = GraphRequest.newMeRequest(loginResult.getAccessToken(),
                    new GraphRequest.GraphJSONObjectCallback() {
                        @Override
                        public void onCompleted(JSONObject object, GraphResponse response) {
                            Log.v("LoginActivity", response.toString());
                        }
                    });
            Bundle parameters = new Bundle();
            parameters.putString("fields", "id,name,email");
            request.setParameters(parameters);
            request.executeAsync();
        }

        @Override
        public void onCancel() {
        }

        @Override
        public void onError(FacebookException e) {
            e.printStackTrace();
        }
    });

并覆盖下面的方法

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

并在清单中定义它

<activity
        android:name="com.facebook.FacebookActivity"            android:configChanges="keyboard|keyboardHidden|screenLayout|screenSize|orientation"
        android:label="@string/app_name"
        android:theme="@android:style/Theme.Translucent.NoTitleBar"/>