在我的应用中,我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>
这是照片的样子
我该如何解决?
答案 0 :(得分:0)
以编程方式为您的对话框设置SoftInputMode。
dialog.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE);