键盘在对话框中编辑时覆盖EditTexts

时间:2018-04-13 09:25:46

标签: android dialog android-edittext keyboard android-dialog

在我的应用中,我Button会打开Dialog以允许用户输入一些数据。

对话框布局包含父ScrollView,其中包含少数EditTexts个孩子。

问题是Keyboard在用户编辑期间覆盖了EditTexts,因此用户基本上看不到他正在输入的内容......

我添加了

android:windowSoftInputMode="stateHidden|adjustPan|adjustResize"

Activity中的Manifest,但问题仍然存在。我想因为问题现在出现在对话框本身而不是父活动中。

这是我的ScrollView

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="10dp"
    android:id="@+id/scrollView"
    android:background="@color/colorWhite"
    android:padding="10dp">

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

            <ImageView
                android:layout_width="30dp"
                android:layout_height="30dp"
                android:src="@drawable/ic_display_name" />

            <EditText
                android:id="@+id/etItemNameDialog"
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_marginLeft="12dp"
                android:layout_weight="1"
                android:hint="@string/item_name"
                android:imeOptions="actionNext"
                android:inputType="textCapWords"
                android:maxLines="1"
                android:textSize="15sp" />

    </LinearLayout>

</ScrollView>

这是照片的样子 keyboard is covering the EditText while editing

我该如何解决?

1 个答案:

答案 0 :(得分:0)

以编程方式为您的对话框设置SoftInputMode。

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

<强> Check also official android documentation.