Skip to content Skip to sidebar Skip to footer

Facebook Sdk 3.0 Android Login Custom Title Bar Disappears

When I'm launching the login/register Facebook Activity using the openSession method the application title bar (we're using a custom one) disappears and another one appears. Is the

Solution 1:

Ultimately, I simply added these lines to LoginActivity.java in the Facebook package:

requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.app_title_bar);

It affected the layout of the activity FB is launching when performing actions and the look is now consistent.

Post a Comment for "Facebook Sdk 3.0 Android Login Custom Title Bar Disappears"