我正在使用 Facebook SDK 并使用 Facebook 登录按钮。当我单击登录时,会显示一个 facebook 弹出窗口。我的问题是,当屏幕处于横向并且我开始输入电子邮件时,键盘与弹出窗口重叠,我看不到我在输入什么,只显示弹出窗口的标题。当屏幕处于纵向时,弹出窗口是正常的,我可以毫无问题地打字。
这是我的 login.xml:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
tools:context=".LoginActivity" ><FrameLayout
android:id="@+id/frame"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_alignParentEnd="false"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="false"
android:layout_alignParentTop="true"
android:addStatesFromChildren="false"
android:background="@drawable/background_land"
android:clipToPadding="true"
android:contentDescription="@string/acLogin_FrameLayout"
android:fitsSystemWindows="false"
android:measureAllChildren="false"
android:splitMotionEvents="false" >
<com.facebook.widget.LoginButton
android:id="@+id/authButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_gravity="center_horizontal|bottom" />
</FrameLayout>
</RelativeLayout>
有什么方法可以让我仍然使用 Facebook 登录按钮并将弹出登录框架设置为几乎不可见?