2

我正在使用 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 登录按钮并将弹出登录框架设置为几乎不可见?

4

1 回答 1

1

尝试更改活动的 windowSoftInput 模式。我的猜测是 android:windowSoftInputMode="adjustResize" 或 "adjustPan"。您可以在 AndroidManifest.xml 中的活动上设置它

于 2013-10-28T17:21:50.690 回答