Android Facebook Api Shows White Blank Page
I am using Android Facebook API but when I click on login button of Facebook it opens the white screen blank just as the image attached. Please suggest some solutions to me. publi
Solution 1:
Adding
webView.resumeTimers();
at the end of com.facebook.widget.WebDialog.setUpWebView() worked for me.(Facebook SDK 3.0+)
Solution 2:
Steps to solve this issue
Open your facebook library ( com.facebook.android) which is added as library
Open FaceBook.java class
In that we will found private static final int DEFAULT_AUTH_ACTIVITY_CODE = 32665.
You should change to DEFAULT_AUTH_ACTIVITY_CODE to -1
Now save it and clean and build both library and your application
Note :
this blank screen appear only for latest versions only .
Post a Comment for "Android Facebook Api Shows White Blank Page"