当显示SoftKeyBoard时,会部分显示对话框

时间:2015-08-08 15:56:01

标签: android layout dialog soft-keyboard

我有一个自定义对话框,如下所示:

enter image description here

单击“编辑文本”时,对话框向上移动,但对话框的一半变为不可见,如下所示: enter image description here

我在Android ICS和Gingerbread上验证了这个问题,但它并没有在Android Lollipop上发生。

感谢您帮助找出原因。

以下是自定义对话框布局XML:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/layoutChatInGame"
android:layout_width="305dp"
android:layout_height="190dp"
android:background="@drawable/dialog_table_border"
android:orientation="vertical"
android:visibility="visible">

<LinearLayout
    android:orientation="horizontal"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@color/roomlist_title_background">

    <ProgressBar
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/progressBar"
        android:layout_margin="5dp"/>

    <LinearLayout
        android:orientation="horizontal"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_gravity="center"
        android:layout_margin="5dp">

        <LinearLayout
            android:orientation="vertical"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="center_vertical">

            <TextView
                android:layout_width="fill_parent"
                android:layout_height="fill_parent"
                android:text="Game is on hold because the host paused the app"
                android:id="@+id/lblOnHoldDialogMessage"
                android:textColor="@color/progress_dialog_on_hold_text"
                android:textSize="18dp"
                android:singleLine="false"
                android:layout_gravity="center_horizontal"/>
        </LinearLayout>
    </LinearLayout>

</LinearLayout>

<TextView
    android:id="@+id/lblChatHistoryGameOnHold"
    android:layout_width="match_parent"
    android:layout_height="fill_parent"
    android:layout_weight="1"
    android:gravity="bottom"
    android:maxLines="5"
    android:scrollbars="vertical"
    android:textColor="@color/edit_text_general_text"
    android:textColorHint="@color/edit_text_general_hint"
    android:paddingRight="2dp"
    android:paddingLeft="2dp"/>

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <EditText
        android:id="@+id/textChatGameOnHold"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_marginLeft="2dp"
        android:layout_marginStart="2dp"
        android:layout_weight="1"
        android:ems="10"
        android:hint="@string/edit_text_send_chat_message"
        android:imeOptions="flagNoExtractUi|actionDone"
        android:inputType="text"
        android:maxLength="100"
        android:maxLines="1"
        android:textColor="@color/edit_text_general_text"
        android:textColorHint="@color/edit_text_general_hint"/>

    <Button
        android:id="@+id/btnSendGameOnHold"
        style="@style/lightboxButton.Blue"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:onClick="sendChatMessageInGame"
        android:text="@string/btn_send"/>
</LinearLayout>

</LinearLayout> 

3 个答案:

答案 0 :(得分:1)

尝试使用android:imeOptions =&#34; flagNoFullscreen&#34;在你的.xml中。建议您进行一些测试,使用带有和不带有flagNoExtractUi的测试。请给我一些反馈。

答案 1 :(得分:0)

如果其他所有解决方案均无效,则尝试在顶部布局中添加marginBottom

LinearLayout android:layout_marginBottom=20dp

答案 2 :(得分:-1)

如果您的对话框被声明为活动,则可以通过为清单中对话框的windowSoftInputMode创建adjustResize标志来获得所需的行为。

喜欢这个:

    android:windowSoftInputMode="adjustResize|stateHidden"

你也可以直接在对话框上直接尝试这样的事情:

alertDialog.getWindow().setSoftInputMode(
WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE);