I have an application that uses Facebook login. I have the FacebookSDK and I use com.facebook.LoginActivity.
The problem is that on 10" tablets the activity is not shown properly when the softkeybord is shown. I'm using a Samsung Galaxy Tab 2 (10.1) (OS 4.0.2).
This is what I see after clicking on one EditText in the Facebook LoginActivity:
In the manifest file I have:
<activity
android:name="com.facebook.LoginActivity"
android:windowSoftInputMode="adjustResize"
android:theme="@android:style/Theme.Translucent.NoTitleBar"
android:label="@string/app_name" >
</activity>
Is anyone else having this problem too? Is anyone using LoginActivity without having problems?
Is there anything else I need to do?
And why does not the Facebook activity take the full screen ?