Android facebook-android-sdk:4.0.0, how can I remove the login progress bar? -
while using loginwithreadpermissions
method of latest facebook sdk android, large progress bar displayed while facebook waits either open app or webview. there anyway stop progress bar showing? not aesthetically pleasing.
i using:
loginmanager.getinstance().loginwithreadpermissions( this, arrays.aslist(getresources().getstring(r.string.app_facebook_scope_email)) );
change com.facebook.facebookactivity
entry in manifest contains:
android:theme="@android:style/theme.nodisplay"
instead of
android:theme="@android:style/theme.translucent.notitlebar"
this worked me.
Comments
Post a Comment