我有一个Fragment
,在那个ScrollView
中有一个Fragment
。
<ScrollView
android:id="@+id/scroll_view"
android:layout_width="0dp"
android:layout_height="0dp"
android:paddingBottom="16dp"
android:paddingLeft="16dp"
android:paddingRight="16dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/appbar">
<android.support.constraint.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<com.tatar.mobile.widget.CardSelectionView
android:id="@+id/card_selection_view"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
app:accountRightTextView1="@string/available"
app:accountTitleTextView="@string/from"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<TextView
android:id="@+id/line_text_view"
android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_marginTop="8dp"
android:background="@color/gray.light"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/card_selection_view" />
<Spinner
android:id="@+id/type_spinner"
style="@style/spinner"
android:layout_marginTop="8dp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/line_text_view" />
<Spinner
android:id="@+id/company_spinner"
style="@style/spinner"
android:layout_marginTop="8dp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/type_spinner" />
<LinearLayout
android:id="@+id/dynamic_form_container"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:orientation="vertical"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/company_spinner" />
<Spinner
android:id="@+id/installment_spinner"
style="@style/spinner"
android:layout_marginTop="8dp"
android:visibility="invisible"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/dynamic_form_container" />
<Button
android:id="@+id/continue_button"
style="@style/action_button"
android:layout_marginTop="16dp"
android:text="@string/continue_button_text"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/installment_spinner" />
</android.support.constraint.ConstraintLayout>
</ScrollView>
其中LinearLayout
为ID dynamic_form_container
的{{1}}包含表单输入字段,这些输入字段将通过Web服务调用进行填充,根据输入字段的不同,最多可能有6-7个输入字段发送到Web服务的参数。因此,表格的高度有点高,这就是问题的出处。当我尝试在输入字段中输入内容时,软键盘会出现,而其他一些输入字段会停留在软键盘下方,并且无法滚动。
我试图将其显示在那个ScrollView
的{{1}}上,但这没有帮助。
Activity
我希望能够在软键盘显示时进行滚动。我该如何解决该问题?
任何帮助将不胜感激
答案 0 :(得分:2)
getActivity().getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE);
采用onCreateView
方法对我有用。
答案 1 :(得分:0)
我找到了解决此问题的方法here,,请在您的项目中添加此类。 并将以下行添加到包含片段的活动的onCreate中。
new KeyboardUtil(this,findViewById(R.id.fragment));
答案 2 :(得分:-1)
你好,请参考下面的代码
这对我来说是工作。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/white">
<ScrollView
android:id="@+id/scrollView"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.constraint.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
</android.support.constraint.ConstraintLayout>
</ScrollView>
AndroidManifest.xml
<activity
android:name=".ui.activities.Activity"
android:configChanges="orientation|keyboardHidden|screenSize"
android:screenOrientation="portrait"
android:theme="@style/AppTheme.NoActionBar" />