When logging in with facebook an Activity is / can be launched (com.facebook.LoginActivity). In my case this is somewhat bad since I'm using a GLSurfaceView and since the graphics thread must be paused at the main activity's onPause-method, the transparent background of FB's activity causes problems.
Is it possible to avoid launching the login activity, using a fragment or view instead?
There is a FacebookFragment class but that's for package access only.
Using Facebook SDK 3.0.
Edit
The manifest entry for the activity is:
<activity android:name="com.facebook.LoginActivity"
android:label="@string/app_name" />